Skip to content

Commit

Permalink
misc: microchip: pci1xxxx: Make symbol 'pci1xxxx_gpio_auxiliary_id_ta…
Browse files Browse the repository at this point in the history
…ble' static

The sparse tool complains as follows:

drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c:409:34: warning:
 symbol 'pci1xxxx_gpio_auxiliary_id_table' was not declared. Should it be static?

This symbol is not used outside of mchp_pci1xxxx_gpio.c, so marks it static.

Fixes: 7d3e4d8 ("misc: microchip: pci1xxxx: load gpio driver for the gpio controller auxiliary device enumerated by the auxiliary bus driver.")
Reported-by: kernel test robot <[email protected]>
Reviewed-by: Kumaravel Thiagarajan <[email protected]>
Signed-off-by: Wei Yongjun <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Wei Yongjun authored and gregkh committed Sep 9, 2022
1 parent 8c297fb commit 6b9a867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ static int pci1xxxx_gpio_probe(struct auxiliary_device *aux_dev,

static SIMPLE_DEV_PM_OPS(pci1xxxx_gpio_pm_ops, pci1xxxx_gpio_suspend, pci1xxxx_gpio_resume);

const struct auxiliary_device_id pci1xxxx_gpio_auxiliary_id_table[] = {
static const struct auxiliary_device_id pci1xxxx_gpio_auxiliary_id_table[] = {
{.name = "mchp_pci1xxxx_gp.gp_gpio"},
{}
};
Expand Down

0 comments on commit 6b9a867

Please sign in to comment.