From: Jingoo Han Date: Wed, 18 Jun 2014 04:33:17 +0000 (+0900) Subject: USB: ehci-msm: Make of_device_id array const X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3587fb3ba05efd920da1395c2437cd40f9c7d1b4;p=deliverable%2Flinux.git 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 Signed-off-by: Greg Kroah-Hartman --- 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", }, {} };