You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
uwb: fix compiler warning on i1480_est_id_table
Annotate i1480_est_id_table as '__used' to fix following warning: CC drivers/uwb/i1480/i1480-est.o drivers/uwb/i1480/i1480-est.c:94: warning: ‘i1480_est_id_table’ defined but not used Signed-off-by: Namhyung Kim <namhyung@gmail.com> Cc: David Vrabel <david.vrabel@csr.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fc33b0eb38
commit
16350a7258
@@ -91,7 +91,7 @@ MODULE_LICENSE("GPL");
|
|||||||
*
|
*
|
||||||
* [so we are loaded when this kind device is connected]
|
* [so we are loaded when this kind device is connected]
|
||||||
*/
|
*/
|
||||||
static struct usb_device_id i1480_est_id_table[] = {
|
static struct usb_device_id __used i1480_est_id_table[] = {
|
||||||
{ USB_DEVICE(0x8086, 0xdf3b), },
|
{ USB_DEVICE(0x8086, 0xdf3b), },
|
||||||
{ USB_DEVICE(0x8086, 0x0c3b), },
|
{ USB_DEVICE(0x8086, 0x0c3b), },
|
||||||
{ },
|
{ },
|
||||||
|
|||||||
Reference in New Issue
Block a user