diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-07 13:32:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-07 13:32:22 -0400 |
commit | 5b8a83551d339736af92c43524ed0e1ba01122af (patch) | |
tree | c05ddf8c68a2c7f00c8843a231026d95b3d82f43 /drivers/pinctrl | |
parent | 54fb6e396dd6a0cfbbed77d6baffa23899f4fca9 (diff) | |
parent | 7bb1cc3bb9d6fca5f285db4df2299c3b80aa8c4a (diff) | |
download | u-boot-5b8a83551d339736af92c43524ed0e1ba01122af.tar.gz |
Merge branch '2021-07-06-update-to-gcc11-clang11'
- Update CI to use gcc-11.1 and clang-11 to build everything. This
requires a few fixes to the code that these newer compilers have
exposed.
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/mscc/mscc-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/mscc/mscc-common.h b/drivers/pinctrl/mscc/mscc-common.h index 3c5c1faf84..49c84a9f41 100644 --- a/drivers/pinctrl/mscc/mscc-common.h +++ b/drivers/pinctrl/mscc/mscc-common.h @@ -61,6 +61,6 @@ int mscc_pinctrl_probe(struct udevice *dev, int num_func, const struct mscc_pin_data *mscc_pins, int num_pins, char * const *function_names, const unsigned long *mscc_gpios); -const struct pinctrl_ops mscc_pinctrl_ops; +extern const struct pinctrl_ops mscc_pinctrl_ops; -const struct dm_gpio_ops mscc_gpio_ops; +extern const struct dm_gpio_ops mscc_gpio_ops; |