* [PATCH] usb: host: ehci-msm: Make of_device_id array const
@ 2014-07-30 12:44 Kiran Padwal
2014-08-01 22:48 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Kiran Padwal @ 2014-07-30 12:44 UTC (permalink / raw)
To: stern; +Cc: gregkh, kiran.padwal, linux-usb, linux-kernel, linux-arm-msm
Make of_device_id array const, because all OF functions handle it as const.
Signed-off-by: Kiran Padwal <kiran.padwal@smartplayin.com>
---
drivers/usb/host/ehci-msm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/host/ehci-msm.c b/drivers/usb/host/ehci-msm.c
index 982c09b..934b39d 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", },
{}
};
--
1.7.9.5
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] usb: host: ehci-msm: Make of_device_id array const
2014-07-30 12:44 [PATCH] usb: host: ehci-msm: Make of_device_id array const Kiran Padwal
@ 2014-08-01 22:48 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2014-08-01 22:48 UTC (permalink / raw)
To: Kiran Padwal; +Cc: stern, linux-usb, linux-kernel, linux-arm-msm
On Wed, Jul 30, 2014 at 06:14:45PM +0530, Kiran Padwal wrote:
> Make of_device_id array const, because all OF functions handle it as const.
>
> Signed-off-by: Kiran Padwal <kiran.padwal@smartplayin.com>
> ---
> drivers/usb/host/ehci-msm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/host/ehci-msm.c b/drivers/usb/host/ehci-msm.c
> index 982c09b..934b39d 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", },
> {}
> };
> --
> 1.7.9.5
This patch is already in my tree, right? Why submit it again?
confused,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-08-01 22:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-30 12:44 [PATCH] usb: host: ehci-msm: Make of_device_id array const Kiran Padwal
2014-08-01 22:48 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome