aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/misc-devices
diff options
context:
space:
mode:
authorJulian Brost <linux-kernel@0x4a42.net>2015-01-11 18:58:09 -0500
committerJonathan Corbet <corbet@lwn.net>2015-01-29 14:56:20 -0500
commit5e857b667cc4b2778a1b4edb95177381d0b36243 (patch)
tree1d03d7e5c570a0b4b79d8413ff464905d38bd446 /Documentation/misc-devices
parent21ef5673230e613f71917730a19f5bd838407592 (diff)
Documentation/misc-devices/mei: Fix indentation of embedded code.
Some of the source code embedded in mei-client-bus.txt was indented using spaces. This properly indents it with tabs and also removes a single space that was placed in front of a closing curly brace. Reviewed-by: Jeremiah Mahler <jmmahler@gmail.com> Signed-off-by: Julian Brost <linux-kernel@0x4a42.net> Signed-off-by: Fabian Hofmann <fabian.hofmann@fau.de> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/misc-devices')
-rw-r--r--Documentation/misc-devices/mei/mei-client-bus.txt10
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[] = {
72MODULE_DEVICE_TABLE(mei_cl, contact_mei_cl_tbl); 72MODULE_DEVICE_TABLE(mei_cl, contact_mei_cl_tbl);
73 73
74static struct mei_cl_driver contact_driver = { 74static 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
82static int contact_init(void) 82static 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
117In the probe routine the driver first enable the MEI device and then registers 117In the probe routine the driver first enable the MEI device and then registers
118an ME bus event handler which is as close as it can get to registering a 118an ME bus event handler which is as close as it can get to registering a