backlight: kb3886_bl: fix incorrect placement of __initdata marker
authorJingoo Han <jg1.han@samsung.com>
Thu, 23 Jan 2014 23:54:31 +0000 (15:54 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 24 Jan 2014 00:36:57 +0000 (16:36 -0800)
commit81f5cdc1b2a48d466bc53f38e843a7981a4e5e0c
tree5e8e2c6c61583d0ed8bf15477f777af60ea4c92b
parent0f53449d69b99f0455ecd3e3a73a38aa7555b174
backlight: kb3886_bl: fix incorrect placement of __initdata marker

The __initdata marker can be virtually anywhere on the line, EXCEPT right
after "struct".  The preferred location is before the "=" sign if there is
one, or before the trailing ";" otherwise.  It also fixes the following
chechpatch warning.

  WARNING: __initdata should be placed after kb3886bl_device_table[]

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/backlight/kb3886_bl.c