Re: [PATCH][next] HID: quirks: make array hid_quirks static

2017-12-07 Thread Jiri Kosina
On Mon, 4 Dec 2017, Colin King wrote: > From: Colin Ian King > > Array hid_quirks is local to the source and does not need to be in > global scope, so make it static. > > Cleans up sparse warning: > drivers/hid/hid-quirks.c:29:28: warning: symbol 'hid_quirks' was not

Re: [PATCH][next] HID: quirks: make array hid_quirks static

2017-12-07 Thread Jiri Kosina
On Mon, 4 Dec 2017, Colin King wrote: > From: Colin Ian King > > Array hid_quirks is local to the source and does not need to be in > global scope, so make it static. > > Cleans up sparse warning: > drivers/hid/hid-quirks.c:29:28: warning: symbol 'hid_quirks' was not > declared. Should it be

Re: [PATCH][next] HID: quirks: make array hid_quirks static

2017-12-04 Thread Benjamin Tissoires
On Mon, Dec 4, 2017 at 12:19 PM, Colin King wrote: > From: Colin Ian King > > Array hid_quirks is local to the source and does not need to be in > global scope, so make it static. > > Cleans up sparse warning: > drivers/hid/hid-quirks.c:29:28:

Re: [PATCH][next] HID: quirks: make array hid_quirks static

2017-12-04 Thread Benjamin Tissoires
On Mon, Dec 4, 2017 at 12:19 PM, Colin King wrote: > From: Colin Ian King > > Array hid_quirks is local to the source and does not need to be in > global scope, so make it static. > > Cleans up sparse warning: > drivers/hid/hid-quirks.c:29:28: warning: symbol 'hid_quirks' was not > declared.

[PATCH][next] HID: quirks: make array hid_quirks static

2017-12-04 Thread Colin King
From: Colin Ian King Array hid_quirks is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: drivers/hid/hid-quirks.c:29:28: warning: symbol 'hid_quirks' was not declared. Should it be static? Signed-off-by: Colin

[PATCH][next] HID: quirks: make array hid_quirks static

2017-12-04 Thread Colin King
From: Colin Ian King Array hid_quirks is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: drivers/hid/hid-quirks.c:29:28: warning: symbol 'hid_quirks' was not declared. Should it be static? Signed-off-by: Colin Ian King ---