diff options
author | Joe Perches <joe@perches.com> | 2015-02-10 12:55:03 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-11 14:38:28 -0800 |
commit | f7219b527b5710ae0c4add8faa4d0ea529722cb5 (patch) | |
tree | 9ce4fb75c6b219f4df803a4ff3110e5e718e00f6 /include | |
parent | 80ad0d4a7a75158f2824d541e4802c88aba4f063 (diff) | |
download | linux-stable-f7219b527b5710ae0c4add8faa4d0ea529722cb5.tar.gz linux-stable-f7219b527b5710ae0c4add8faa4d0ea529722cb5.tar.bz2 linux-stable-f7219b527b5710ae0c4add8faa4d0ea529722cb5.zip |
treewide: Remove unnecessary BCMA_CORETABLE_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 745def862580..6711d57f9c05 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -381,8 +381,6 @@ struct bcma_device_id { } __attribute__((packed,aligned(2))); #define BCMA_CORE(_manuf, _id, _rev, _class) \ { .manuf = _manuf, .id = _id, .rev = _rev, .class = _class, } -#define BCMA_CORETABLE_END \ - { 0, }, #define BCMA_ANY_MANUF 0xFFFF #define BCMA_ANY_ID 0xFFFF |