mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
c89f8d47a1
Clang complains about an extraneous definition of the module
device table after the patch to add it was accidentally merged
twice:
../drivers/media/i2c/s5c73m3/s5c73m3-spi.c:40:1: error: redefinition of
'__mod_of__s5c73m3_spi_ids_device_table'
MODULE_DEVICE_TABLE(of, s5c73m3_spi_ids);
^
../include/linux/module.h:223:27: note: expanded from macro 'MODULE_DEVICE_TABLE'
extern const typeof(name) __mod_##type##__##name##_device_table \
^
<scratch space>:99:1: note: expanded from here
__mod_of__s5c73m3_spi_ids_device_table
This removes the second definition.
Fixes:
|
||
---|---|---|
.. | ||
Makefile | ||
s5c73m3-core.c | ||
s5c73m3-ctrls.c | ||
s5c73m3-spi.c | ||
s5c73m3.h |