diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-06-18 08:33:17 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-10 03:13:03 +0400 |
commit | 3587fb3ba05efd920da1395c2437cd40f9c7d1b4 (patch) | |
tree | 06ea42b8a4590f0c2f38818b836fdb20dff981b6 /drivers/usb/host/ehci-msm.c | |
parent | 8968614a8ca52f2ea855eccf7b2df66cb34c154d (diff) | |
download | linux-3587fb3ba05efd920da1395c2437cd40f9c7d1b4.tar.xz |
USB: ehci-msm: Make of_device_id array const
Make of_device_id array const, because all OF functions handle
it as const.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-msm.c')
-rw-r--r-- | drivers/usb/host/ehci-msm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-msm.c b/drivers/usb/host/ehci-msm.c index 982c09bebe0f..934b39d5e44a 100644 --- a/drivers/usb/host/ehci-msm.c +++ b/drivers/usb/host/ehci-msm.c @@ -190,7 +190,7 @@ static const struct dev_pm_ops ehci_msm_dev_pm_ops = { .resume = ehci_msm_pm_resume, }; -static struct of_device_id msm_ehci_dt_match[] = { +static const struct of_device_id msm_ehci_dt_match[] = { { .compatible = "qcom,ehci-host", }, {} }; |