All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ptp: make ptp_clock_info const
@ 2017-08-21 17:31 Bhumika Goyal
  2017-08-22  6:27 ` Richard Cochran
  2017-08-22 18:05 ` David Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Bhumika Goyal @ 2017-08-21 17:31 UTC (permalink / raw)
  To: julia.lawall, richardcochran, netdev, linux-kernel; +Cc: Bhumika Goyal

Make these const as they are only used in a copy operation.
Done using Coccinelle.

@match disable optional_qualifier@
identifier s;
@@
static struct ptp_clock_info s = {...};

@ref@
position p;
identifier match.s;
@@
s@p

@good1@
position ref.p;
identifier match.s,f,c;
expression e;
@@
(
e = s@p
|
e = s@p.f
|
c(...,s@p.f,...)
|
c(...,s@p,...)
)

@bad depends on  !good1@
position ref.p;
identifier match.s;
@@
s@p

@depends on forall !bad disable optional_qualifier@
identifier match.s;
@@
static
+ const
struct ptp_clock_info s;

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
File ptp_ixp46x.c is not tested as I could not find any architecture
to cross compile it. 

 drivers/ptp/ptp_dte.c    | 2 +-
 drivers/ptp/ptp_ixp46x.c | 2 +-
 drivers/ptp/ptp_kvm.c    | 2 +-
 drivers/ptp/ptp_pch.c    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/ptp/ptp_dte.c b/drivers/ptp/ptp_dte.c
index faf6f7a..6edd3b9 100644
--- a/drivers/ptp/ptp_dte.c
+++ b/drivers/ptp/ptp_dte.c
@@ -221,7 +221,7 @@ static int ptp_dte_enable(struct ptp_clock_info *ptp,
 	return -EOPNOTSUPP;
 }
 
-static struct ptp_clock_info ptp_dte_caps = {
+static const struct ptp_clock_info ptp_dte_caps = {
 	.owner		= THIS_MODULE,
 	.name		= "DTE PTP timer",
 	.max_adj	= 50000000,
diff --git a/drivers/ptp/ptp_ixp46x.c b/drivers/ptp/ptp_ixp46x.c
index 344a3ba..1171ffd 100644
--- a/drivers/ptp/ptp_ixp46x.c
+++ b/drivers/ptp/ptp_ixp46x.c
@@ -236,7 +236,7 @@ static int ptp_ixp_enable(struct ptp_clock_info *ptp,
 	return -EOPNOTSUPP;
 }
 
-static struct ptp_clock_info ptp_ixp_caps = {
+static const struct ptp_clock_info ptp_ixp_caps = {
 	.owner		= THIS_MODULE,
 	.name		= "IXP46X timer",
 	.max_adj	= 66666655,
diff --git a/drivers/ptp/ptp_kvm.c b/drivers/ptp/ptp_kvm.c
index bb86569..2b1b212 100644
--- a/drivers/ptp/ptp_kvm.c
+++ b/drivers/ptp/ptp_kvm.c
@@ -150,7 +150,7 @@ static int ptp_kvm_enable(struct ptp_clock_info *ptp,
 	return -EOPNOTSUPP;
 }
 
-static struct ptp_clock_info ptp_kvm_caps = {
+static const struct ptp_clock_info ptp_kvm_caps = {
 	.owner		= THIS_MODULE,
 	.name		= "KVM virtual PTP",
 	.max_adj	= 0,
diff --git a/drivers/ptp/ptp_pch.c b/drivers/ptp/ptp_pch.c
index 3aa22ae..b328517 100644
--- a/drivers/ptp/ptp_pch.c
+++ b/drivers/ptp/ptp_pch.c
@@ -509,7 +509,7 @@ static int ptp_pch_enable(struct ptp_clock_info *ptp,
 	return -EOPNOTSUPP;
 }
 
-static struct ptp_clock_info ptp_pch_caps = {
+static const struct ptp_clock_info ptp_pch_caps = {
 	.owner		= THIS_MODULE,
 	.name		= "PCH timer",
 	.max_adj	= 50000000,
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] ptp: make ptp_clock_info const
  2017-08-21 17:31 [PATCH] ptp: make ptp_clock_info const Bhumika Goyal
@ 2017-08-22  6:27 ` Richard Cochran
  2017-08-22  6:36   ` Bhumika Goyal
  2017-08-22 18:05 ` David Miller
  1 sibling, 1 reply; 5+ messages in thread
From: Richard Cochran @ 2017-08-22  6:27 UTC (permalink / raw)
  To: Bhumika Goyal; +Cc: julia.lawall, netdev, linux-kernel

On Mon, Aug 21, 2017 at 11:01:12PM +0530, Bhumika Goyal wrote:
> File ptp_ixp46x.c is not tested as I could not find any architecture
> to cross compile it. 

No problem.  Thanks for test compiling the other drivers.

Acked-by: Richard Cochran <richardcochran@gmail.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ptp: make ptp_clock_info const
  2017-08-22  6:27 ` Richard Cochran
@ 2017-08-22  6:36   ` Bhumika Goyal
  2017-08-22  7:50     ` Richard Cochran
  0 siblings, 1 reply; 5+ messages in thread
From: Bhumika Goyal @ 2017-08-22  6:36 UTC (permalink / raw)
  To: Richard Cochran; +Cc: Julia Lawall, netdev, Linux Kernel Mailing List

On Tue, Aug 22, 2017 at 11:57 AM, Richard Cochran
<richardcochran@gmail.com> wrote:
> On Mon, Aug 21, 2017 at 11:01:12PM +0530, Bhumika Goyal wrote:
>> File ptp_ixp46x.c is not tested as I could not find any architecture
>> to cross compile it.
>
> No problem.  Thanks for test compiling the other drivers.
>

By testing I meant that they have been checked by the compiler. I
haven't run the code on a hardware or some test data.

Thanks,
Bhumika

> Acked-by: Richard Cochran <richardcochran@gmail.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ptp: make ptp_clock_info const
  2017-08-22  6:36   ` Bhumika Goyal
@ 2017-08-22  7:50     ` Richard Cochran
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Cochran @ 2017-08-22  7:50 UTC (permalink / raw)
  To: Bhumika Goyal; +Cc: Julia Lawall, netdev, Linux Kernel Mailing List

On Tue, Aug 22, 2017 at 12:06:23PM +0530, Bhumika Goyal wrote:
> By testing I meant that they have been checked by the compiler. I
> haven't run the code on a hardware or some test data.

Yes, compiling is good enough for this change.

Thanks,
Richard

> > Acked-by: Richard Cochran <richardcochran@gmail.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ptp: make ptp_clock_info const
  2017-08-21 17:31 [PATCH] ptp: make ptp_clock_info const Bhumika Goyal
  2017-08-22  6:27 ` Richard Cochran
@ 2017-08-22 18:05 ` David Miller
  1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2017-08-22 18:05 UTC (permalink / raw)
  To: bhumirks; +Cc: julia.lawall, richardcochran, netdev, linux-kernel

From: Bhumika Goyal <bhumirks@gmail.com>
Date: Mon, 21 Aug 2017 23:01:12 +0530

> Make these const as they are only used in a copy operation.
> Done using Coccinelle.
 ...
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>

Applied.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-08-22 18:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-21 17:31 [PATCH] ptp: make ptp_clock_info const Bhumika Goyal
2017-08-22  6:27 ` Richard Cochran
2017-08-22  6:36   ` Bhumika Goyal
2017-08-22  7:50     ` Richard Cochran
2017-08-22 18:05 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.