diff options
author | Joe Perches <joe@perches.com> | 2015-02-11 00:19:24 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-12 01:38:29 +0300 |
commit | 673e2baaa6d986e2fcd9c867661d8113f6c7dc7b (patch) | |
tree | c95761029876a8f1bfe20b2fda8fc1cc5de72d3c /include | |
parent | f7219b527b5710ae0c4add8faa4d0ea529722cb5 (diff) | |
download | linux-673e2baaa6d986e2fcd9c867661d8113f6c7dc7b.tar.xz |
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 'include')
-rw-r--r-- | include/linux/mod_devicetable.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 6711d57f9c05..2bb97175b6cc 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -365,8 +365,6 @@ struct ssb_device_id { } __attribute__((packed, aligned(2))); #define SSB_DEVICE(_vendor, _coreid, _revision) \ { .vendor = _vendor, .coreid = _coreid, .revision = _revision, } -#define SSB_DEVTABLE_END \ - { 0, }, #define SSB_ANY_VENDOR 0xFFFF #define SSB_ANY_ID 0xFFFF |