mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
My kernel robot reports build error from drivers/iio/adc/da9150-gpadc.c,
drivers/iio/adc/da9150-gpadc.c:254:13: error: ‘DA9150_GPADC_CHAN_0x08’
undeclared here (not in a function); did you mean ‘DA9150_GPADC_CHAN_TBAT’?
254 | .channel = DA9150_GPADC_CHAN_##_id,
We define GPIOD in rb.h, in fact it should only be used in gpio.c, but
it affects the driver da9150-gpadc.c which goes against the original
intention of the design, just move it to its scope.
Fixes:
|
||
|---|---|---|
| .. | ||
| cpu-feature-overrides.h | ||
| ddr.h | ||
| dma_v.h | ||
| dma.h | ||
| eth.h | ||
| gpio.h | ||
| integ.h | ||
| irq.h | ||
| pci.h | ||
| prom.h | ||
| rb.h | ||
| rc32434.h | ||
| timer.h | ||