Commit 5e857b66 authored by Julian Brost's avatar Julian Brost Committed by Jonathan Corbet

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: default avatarJeremiah Mahler <jmmahler@gmail.com>
Signed-off-by: default avatarJulian Brost <linux-kernel@0x4a42.net>
Signed-off-by: default avatarFabian Hofmann <fabian.hofmann@fau.de>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent 21ef5673
......@@ -72,11 +72,11 @@ static struct mei_cl_device_id contact_mei_cl_tbl[] = {
MODULE_DEVICE_TABLE(mei_cl, contact_mei_cl_tbl);
static struct mei_cl_driver contact_driver = {
.id_table = contact_mei_tbl,
.name = CONTACT_DRIVER_NAME,
.id_table = contact_mei_tbl,
.name = CONTACT_DRIVER_NAME,
.probe = contact_probe,
.remove = contact_remove,
.probe = contact_probe,
.remove = contact_remove,
};
static int contact_init(void)
......@@ -112,7 +112,7 @@ int contact_probe(struct mei_cl_device *dev, struct mei_cl_device_id *id)
mei_cl_register_event_cb(dev, contact_event_cb, contact);
return 0;
}
}
In the probe routine the driver first enable the MEI device and then registers
an ME bus event handler which is as close as it can get to registering a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment