diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2016-04-27 19:28:32 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-28 21:35:36 +0200 |
commit | edc8c54bf454e6ba4f4631db1603f2297e4d4b67 (patch) | |
tree | 0f0dffb37de200550a0fce4215ba9987c98f9af3 /drivers/usb/host/ehci-exynos.c | |
parent | usb: devio: declare usbdev_vm_ops as static (diff) | |
download | linux-edc8c54bf454e6ba4f4631db1603f2297e4d4b67.tar.xz linux-edc8c54bf454e6ba4f4631db1603f2297e4d4b67.zip |
usb/host/: const data must use __initconst not __initdata
Init data marked const should be annotated with __initconst for
correctness and not __initdata. This also fixes LTO builds that
otherwise fail with section mismatch errors.
Signed-off-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-exynos.c')
-rw-r--r-- | drivers/usb/host/ehci-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c index df538fd10aa4..42e5b66353ef 100644 --- a/drivers/usb/host/ehci-exynos.c +++ b/drivers/usb/host/ehci-exynos.c @@ -321,7 +321,7 @@ static struct platform_driver exynos_ehci_driver = { .of_match_table = of_match_ptr(exynos_ehci_match), } }; -static const struct ehci_driver_overrides exynos_overrides __initdata = { +static const struct ehci_driver_overrides exynos_overrides __initconst = { .extra_priv_size = sizeof(struct exynos_ehci_hcd), }; |