1
0
Fork 0

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>
hifive-unleashed-5.1
Jingoo Han 2014-06-18 13:33:17 +09:00 committed by Greg Kroah-Hartman
parent 8968614a8c
commit 3587fb3ba0
1 changed files with 1 additions and 1 deletions

View File

@ -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", },
{}
};