Re: [PATCH] crypto: stm32 - fix building as a module

2017-04-29 Thread Herbert Xu
On Thu, Apr 27, 2017 at 01:07:07PM +0200, Arnd Bergmann wrote: > The names in the MODULE_DEVICE_TABLE and the actual array don't match: > > drivers/crypto/stm32/stm32_crc32.c:309:21: error: 'sti_dt_ids' undeclared > here (not in a function); did you mean 'stm32_dt_ids'? > > This changes the

Re: [PATCH] crypto: stm32 - fix building as a module

2017-04-29 Thread Herbert Xu
On Thu, Apr 27, 2017 at 01:07:07PM +0200, Arnd Bergmann wrote: > The names in the MODULE_DEVICE_TABLE and the actual array don't match: > > drivers/crypto/stm32/stm32_crc32.c:309:21: error: 'sti_dt_ids' undeclared > here (not in a function); did you mean 'stm32_dt_ids'? > > This changes the

[PATCH] crypto: stm32 - fix building as a module

2017-04-27 Thread Arnd Bergmann
The names in the MODULE_DEVICE_TABLE and the actual array don't match: drivers/crypto/stm32/stm32_crc32.c:309:21: error: 'sti_dt_ids' undeclared here (not in a function); did you mean 'stm32_dt_ids'? This changes the reference that was evidently copied incorrectly from another driver. Fixes:

[PATCH] crypto: stm32 - fix building as a module

2017-04-27 Thread Arnd Bergmann
The names in the MODULE_DEVICE_TABLE and the actual array don't match: drivers/crypto/stm32/stm32_crc32.c:309:21: error: 'sti_dt_ids' undeclared here (not in a function); did you mean 'stm32_dt_ids'? This changes the reference that was evidently copied incorrectly from another driver. Fixes: