提交 5669021e 编写于 作者: K Kristen Carlson Accardi 提交者: Greg Kroah-Hartman

PCI: docking station: remove dock uevents

Remove uevent dock notifications.  There are no consumers
of these events at present, and uevents are likely not the
correct way to send this type of event anyway.

Until I get some kind of idea if anyone in userspace cares
about dock events, I will just not send any.
Signed-off-by: NKristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 321311af
...@@ -58,8 +58,8 @@ struct dock_dependent_device { ...@@ -58,8 +58,8 @@ struct dock_dependent_device {
}; };
#define DOCK_DOCKING 0x00000001 #define DOCK_DOCKING 0x00000001
#define DOCK_EVENT KOBJ_DOCK #define DOCK_EVENT 3
#define UNDOCK_EVENT KOBJ_UNDOCK #define UNDOCK_EVENT 2
static struct dock_station *dock_station; static struct dock_station *dock_station;
...@@ -322,11 +322,10 @@ static void hotplug_dock_devices(struct dock_station *ds, u32 event) ...@@ -322,11 +322,10 @@ static void hotplug_dock_devices(struct dock_station *ds, u32 event)
static void dock_event(struct dock_station *ds, u32 event, int num) static void dock_event(struct dock_station *ds, u32 event, int num)
{ {
struct acpi_device *device; /*
* we don't do events until someone tells me that
device = dock_create_acpi_device(ds->handle); * they would like to have them.
if (device) */
kobject_uevent(&device->kobj, num);
} }
/** /**
......
...@@ -46,8 +46,6 @@ enum kobject_action { ...@@ -46,8 +46,6 @@ enum kobject_action {
KOBJ_UMOUNT = (__force kobject_action_t) 0x05, /* umount event for block devices (broken) */ KOBJ_UMOUNT = (__force kobject_action_t) 0x05, /* umount event for block devices (broken) */
KOBJ_OFFLINE = (__force kobject_action_t) 0x06, /* device offline */ KOBJ_OFFLINE = (__force kobject_action_t) 0x06, /* device offline */
KOBJ_ONLINE = (__force kobject_action_t) 0x07, /* device online */ KOBJ_ONLINE = (__force kobject_action_t) 0x07, /* device online */
KOBJ_UNDOCK = (__force kobject_action_t) 0x08, /* undocking */
KOBJ_DOCK = (__force kobject_action_t) 0x09, /* dock */
}; };
struct kobject { struct kobject {
......
...@@ -50,10 +50,6 @@ static char *action_to_string(enum kobject_action action) ...@@ -50,10 +50,6 @@ static char *action_to_string(enum kobject_action action)
return "offline"; return "offline";
case KOBJ_ONLINE: case KOBJ_ONLINE:
return "online"; return "online";
case KOBJ_DOCK:
return "dock";
case KOBJ_UNDOCK:
return "undock";
default: default:
return NULL; return NULL;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册