diff options
author | Joe Perches <joe@perches.com> | 2015-02-10 16:19:24 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-11 17:38:29 -0500 |
commit | 673e2baaa6d986e2fcd9c867661d8113f6c7dc7b (patch) | |
tree | c95761029876a8f1bfe20b2fda8fc1cc5de72d3c /drivers/usb/host | |
parent | f7219b527b5710ae0c4add8faa4d0ea529722cb5 (diff) |
treewide: Remove unnecessary SSB_DEVTABLE_END macro
Use the normal {} instead of a macro to terminate an array.
Remove the macro too.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/ssb-hcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ssb-hcd.c b/drivers/usb/host/ssb-hcd.c index 0196f766df73..ffc32f4b1b1b 100644 --- a/drivers/usb/host/ssb-hcd.c +++ b/drivers/usb/host/ssb-hcd.c | |||
@@ -251,7 +251,7 @@ static const struct ssb_device_id ssb_hcd_table[] = { | |||
251 | SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOSTDEV, SSB_ANY_REV), | 251 | SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOSTDEV, SSB_ANY_REV), |
252 | SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOST, SSB_ANY_REV), | 252 | SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOST, SSB_ANY_REV), |
253 | SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB20_HOST, SSB_ANY_REV), | 253 | SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB20_HOST, SSB_ANY_REV), |
254 | SSB_DEVTABLE_END | 254 | {}, |
255 | }; | 255 | }; |
256 | MODULE_DEVICE_TABLE(ssb, ssb_hcd_table); | 256 | MODULE_DEVICE_TABLE(ssb, ssb_hcd_table); |
257 | 257 | ||