diff options
-rw-r--r-- | Documentation/misc-devices/mei/mei-client-bus.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/misc-devices/mei/mei-client-bus.txt b/Documentation/misc-devices/mei/mei-client-bus.txt index 6ca486bd0d14..743be4ec8989 100644 --- a/Documentation/misc-devices/mei/mei-client-bus.txt +++ b/Documentation/misc-devices/mei/mei-client-bus.txt | |||
@@ -72,11 +72,11 @@ static struct mei_cl_device_id contact_mei_cl_tbl[] = { | |||
72 | MODULE_DEVICE_TABLE(mei_cl, contact_mei_cl_tbl); | 72 | MODULE_DEVICE_TABLE(mei_cl, contact_mei_cl_tbl); |
73 | 73 | ||
74 | static struct mei_cl_driver contact_driver = { | 74 | static struct mei_cl_driver contact_driver = { |
75 | .id_table = contact_mei_tbl, | 75 | .id_table = contact_mei_tbl, |
76 | .name = CONTACT_DRIVER_NAME, | 76 | .name = CONTACT_DRIVER_NAME, |
77 | 77 | ||
78 | .probe = contact_probe, | 78 | .probe = contact_probe, |
79 | .remove = contact_remove, | 79 | .remove = contact_remove, |
80 | }; | 80 | }; |
81 | 81 | ||
82 | static int contact_init(void) | 82 | static int contact_init(void) |
@@ -112,7 +112,7 @@ int contact_probe(struct mei_cl_device *dev, struct mei_cl_device_id *id) | |||
112 | mei_cl_register_event_cb(dev, contact_event_cb, contact); | 112 | mei_cl_register_event_cb(dev, contact_event_cb, contact); |
113 | 113 | ||
114 | return 0; | 114 | return 0; |
115 | } | 115 | } |
116 | 116 | ||
117 | In the probe routine the driver first enable the MEI device and then registers | 117 | In the probe routine the driver first enable the MEI device and then registers |
118 | an ME bus event handler which is as close as it can get to registering a | 118 | an ME bus event handler which is as close as it can get to registering a |