diff options
| author | Krzysztof Kozlowski <[email protected]> | 2023-03-11 11:13:07 +0000 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2023-03-15 09:38:39 +0000 |
| commit | cf67efd1ae74a7448084b8f167f7feaf99513957 (patch) | |
| tree | 8f56eea926b70a148bd2ca91ff17fa303d9ef9b6 /drivers/gpio/gpio-raspberrypi-exp.c | |
| parent | gpio: xra1403: mark OF related data as maybe unused (diff) | |
| download | kernel-cf67efd1ae74a7448084b8f167f7feaf99513957.tar.gz kernel-cf67efd1ae74a7448084b8f167f7feaf99513957.zip | |
gpio: raspberrypi-exp: mark OF related data as maybe unused
The driver can be compile tested with !CONFIG_OF making certain data
unused:
drivers/gpio/gpio-raspberrypi-exp.c:237:34: error: ‘rpi_exp_gpio_ids’ defined but not used [-Werror=unused-const-variable=]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Signed-off-by: Bartosz Golaszewski <[email protected]>
Diffstat (limited to 'drivers/gpio/gpio-raspberrypi-exp.c')
| -rw-r--r-- | drivers/gpio/gpio-raspberrypi-exp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-raspberrypi-exp.c b/drivers/gpio/gpio-raspberrypi-exp.c index 3c414e0005fc..ecb0d3800dfe 100644 --- a/drivers/gpio/gpio-raspberrypi-exp.c +++ b/drivers/gpio/gpio-raspberrypi-exp.c @@ -234,7 +234,7 @@ static int rpi_exp_gpio_probe(struct platform_device *pdev) return devm_gpiochip_add_data(dev, &rpi_gpio->gc, rpi_gpio); } -static const struct of_device_id rpi_exp_gpio_ids[] = { +static const struct of_device_id rpi_exp_gpio_ids[] __maybe_unused = { { .compatible = "raspberrypi,firmware-gpio" }, { } }; |
