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>
This commit is contained in:
Jingoo Han 2014-06-18 13:33:17 +09:00 committed by Greg Kroah-Hartman
parent 8968614a8c
commit 3587fb3ba0

View file

@ -190,7 +190,7 @@ static const struct dev_pm_ops ehci_msm_dev_pm_ops = {
.resume = ehci_msm_pm_resume, .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", }, { .compatible = "qcom,ehci-host", },
{} {}
}; };