aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorDaniel Thompson <daniel.thompson@linaro.org>2015-01-05 10:43:39 -0500
committerRob Herring <robh@kernel.org>2015-02-03 21:31:05 -0500
commit851c63e3b381fdbf5aca1a797f37d8606b5588d2 (patch)
tree184c82142b0b2905b52739cd8776d1b17eee41f4 /include/linux
parente94fbe607f8c6bf87358ca84e9631a2fe5ebdc21 (diff)
of: Fix brace position for struct of_device_id definition
Currently it is not easy to grep for the definition of struct of_device_id. This is trivially fixed by moving the brace to the right place. Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org> Cc: Grant Likely <grant.likely@linaro.org> Cc: Rob Herring <robh+dt@kernel.org> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mod_devicetable.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h
index 745def862580..bbf85d612be5 100644
--- a/include/linux/mod_devicetable.h
+++ b/include/linux/mod_devicetable.h
@@ -220,8 +220,7 @@ struct serio_device_id {
220/* 220/*
221 * Struct used for matching a device 221 * Struct used for matching a device
222 */ 222 */
223struct of_device_id 223struct of_device_id {
224{
225 char name[32]; 224 char name[32];
226 char type[32]; 225 char type[32];
227 char compatible[128]; 226 char compatible[128];