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>
This commit is contained in:
parent
0f53449d69
commit
81f5cdc1b2
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ static struct kb3886bl_machinfo *bl_machinfo;
|
|||
static unsigned long kb3886bl_flags;
|
||||
#define KB3886BL_SUSPENDED 0x01
|
||||
|
||||
static struct dmi_system_id __initdata kb3886bl_device_table[] = {
|
||||
static struct dmi_system_id kb3886bl_device_table[] __initdata = {
|
||||
{
|
||||
.ident = "Sahara Touch-iT",
|
||||
.matches = {
|
||||
|
|
Loading…
Add table
Reference in a new issue