* [PATCH] C2port:Fix deprecated exported interfaces c2port.h
@ 2011-05-05 12:29 Wanlong Gao
2011-05-05 14:10 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Wanlong Gao @ 2011-05-05 12:29 UTC (permalink / raw)
To: gregkh; +Cc: linux-kernel, Wanlong Gao
From: Wanlong Gao <wanlong.gao@gmail.com>
Change to_class_dev to to_device since the struct class_device had
merged to struct device.
Fix the to_c2port_device interface since the struct c2port_device
has no member named class.
Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
---
include/linux/c2port.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/c2port.h b/include/linux/c2port.h
index 2a5cd86..7e6bd33 100644
--- a/include/linux/c2port.h
+++ b/include/linux/c2port.h
@@ -60,8 +60,8 @@ struct c2port_ops {
* Exported functions
*/
-#define to_class_dev(obj) container_of((obj), struct class_device, kobj)
-#define to_c2port_device(obj) container_of((obj), struct c2port_device, class)
+#define to_device(obj) container_of(obj, struct device, kobj)
+#define to_c2port_device(obj) container_of(obj, struct c2port_device, dev.kobj)
extern struct c2port_device *c2port_device_register(char *name,
struct c2port_ops *ops, void *devdata);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] C2port:Fix deprecated exported interfaces c2port.h
2011-05-05 12:29 [PATCH] C2port:Fix deprecated exported interfaces c2port.h Wanlong Gao
@ 2011-05-05 14:10 ` Greg KH
2011-05-05 14:30 ` Wanlong Gao
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2011-05-05 14:10 UTC (permalink / raw)
To: Wanlong Gao; +Cc: linux-kernel
On Thu, May 05, 2011 at 08:29:09PM +0800, Wanlong Gao wrote:
> From: Wanlong Gao <wanlong.gao@gmail.com>
>
> Change to_class_dev to to_device since the struct class_device had
> merged to struct device.
> Fix the to_c2port_device interface since the struct c2port_device
> has no member named class.
>
> Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
> ---
> include/linux/c2port.h | 4 ++--
I don't know why you sent this to me, have you looked at the
scripts/get_maintainer.pl tool?
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/c2port.h b/include/linux/c2port.h
> index 2a5cd86..7e6bd33 100644
> --- a/include/linux/c2port.h
> +++ b/include/linux/c2port.h
> @@ -60,8 +60,8 @@ struct c2port_ops {
> * Exported functions
> */
>
> -#define to_class_dev(obj) container_of((obj), struct class_device, kobj)
> -#define to_c2port_device(obj) container_of((obj), struct c2port_device, class)
> +#define to_device(obj) container_of(obj, struct device, kobj)
> +#define to_c2port_device(obj) container_of(obj, struct c2port_device, dev.kobj)
Doesn't this break the build? If not, something is really wrong here.
confused,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] C2port:Fix deprecated exported interfaces c2port.h
2011-05-05 14:10 ` Greg KH
@ 2011-05-05 14:30 ` Wanlong Gao
2011-05-05 14:39 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Wanlong Gao @ 2011-05-05 14:30 UTC (permalink / raw)
To: Greg KH; +Cc: linux-kernel
on 2011-05-05 07:10 -0700,Greg KH wroted:
> On Thu, May 05, 2011 at 08:29:09PM +0800, Wanlong Gao wrote:
> > From: Wanlong Gao <wanlong.gao@gmail.com>
> >
> > Change to_class_dev to to_device since the struct class_device had
> > merged to struct device.
> > Fix the to_c2port_device interface since the struct c2port_device
> > has no member named class.
> >
> > Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
> > ---
> > include/linux/c2port.h | 4 ++--
>
> I don't know why you sent this to me, have you looked at the
> scripts/get_maintainer.pl tool?
Yes, I have, but I just get the linux-kernel open list, so I have
no idea but send it to you.
>
>
> > 1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/include/linux/c2port.h b/include/linux/c2port.h
> > index 2a5cd86..7e6bd33 100644
> > --- a/include/linux/c2port.h
> > +++ b/include/linux/c2port.h
> > @@ -60,8 +60,8 @@ struct c2port_ops {
> > * Exported functions
> > */
> >
> > -#define to_class_dev(obj) container_of((obj), struct class_device, kobj)
> > -#define to_c2port_device(obj) container_of((obj), struct c2port_device, class)
> > +#define to_device(obj) container_of(obj, struct device, kobj)
> > +#define to_c2port_device(obj) container_of(obj, struct c2port_device, dev.kobj)
>
> Doesn't this break the build? If not, something is really wrong here.
The interface just exported but not used in the kernel code, so it will
not break the build. The class_device structure is deprecated in your
driver-core, so it really has something wrong here.
>
> confused,
Me too, I checked the log and see that the to_c2port_device had
something wrong in this file's initial version.
>
> greg k-h
Thanks
Best regards
Wanlong Gao
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] C2port:Fix deprecated exported interfaces c2port.h
2011-05-05 14:30 ` Wanlong Gao
@ 2011-05-05 14:39 ` Greg KH
2011-05-05 14:54 ` Wanlong Gao
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2011-05-05 14:39 UTC (permalink / raw)
To: Wanlong Gao; +Cc: linux-kernel
On Thu, May 05, 2011 at 10:30:40PM +0800, Wanlong Gao wrote:
> on 2011-05-05 07:10 -0700,Greg KH wroted:
> > On Thu, May 05, 2011 at 08:29:09PM +0800, Wanlong Gao wrote:
> > > From: Wanlong Gao <wanlong.gao@gmail.com>
> > >
> > > Change to_class_dev to to_device since the struct class_device had
> > > merged to struct device.
> > > Fix the to_c2port_device interface since the struct c2port_device
> > > has no member named class.
> > >
> > > Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
> > > ---
> > > include/linux/c2port.h | 4 ++--
> >
> > I don't know why you sent this to me, have you looked at the
> > scripts/get_maintainer.pl tool?
> Yes, I have, but I just get the linux-kernel open list, so I have
> no idea but send it to you.
Ok, you are right that get_maintainers.pl doesn't show anything, but
look at the git history, you will see that Rodolfo Giometti
<giometti@linux.it> originally added this code, so that is who you need
to copy on any patch.
> > > 1 files changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/include/linux/c2port.h b/include/linux/c2port.h
> > > index 2a5cd86..7e6bd33 100644
> > > --- a/include/linux/c2port.h
> > > +++ b/include/linux/c2port.h
> > > @@ -60,8 +60,8 @@ struct c2port_ops {
> > > * Exported functions
> > > */
> > >
> > > -#define to_class_dev(obj) container_of((obj), struct class_device, kobj)
> > > -#define to_c2port_device(obj) container_of((obj), struct c2port_device, class)
> > > +#define to_device(obj) container_of(obj, struct device, kobj)
> > > +#define to_c2port_device(obj) container_of(obj, struct c2port_device, dev.kobj)
> >
> > Doesn't this break the build? If not, something is really wrong here.
> The interface just exported but not used in the kernel code, so it will
> not break the build. The class_device structure is deprecated in your
> driver-core, so it really has something wrong here.
What is wrong is that these macros are never used, otherwise they would
break the build. So I'm pretty sure you can just remove them safely,
but run it by Rodolfo first please.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] C2port:Fix deprecated exported interfaces c2port.h
2011-05-05 14:39 ` Greg KH
@ 2011-05-05 14:54 ` Wanlong Gao
0 siblings, 0 replies; 5+ messages in thread
From: Wanlong Gao @ 2011-05-05 14:54 UTC (permalink / raw)
To: Greg KH; +Cc: linux-kernel, giometti
on 2011-05-05四的 07:39 -0700,Greg KH wroted :
> On Thu, May 05, 2011 at 10:30:40PM +0800, Wanlong Gao wrote:
> > on 2011-05-05 07:10 -0700,Greg KH wroted:
> > > On Thu, May 05, 2011 at 08:29:09PM +0800, Wanlong Gao wrote:
> > > > From: Wanlong Gao <wanlong.gao@gmail.com>
> > > >
> > > > Change to_class_dev to to_device since the struct class_device had
> > > > merged to struct device.
> > > > Fix the to_c2port_device interface since the struct c2port_device
> > > > has no member named class.
> > > >
> > > > Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
> > > > ---
> > > > include/linux/c2port.h | 4 ++--
> > >
> > > I don't know why you sent this to me, have you looked at the
> > > scripts/get_maintainer.pl tool?
> > Yes, I have, but I just get the linux-kernel open list, so I have
> > no idea but send it to you.
>
> Ok, you are right that get_maintainers.pl doesn't show anything, but
> look at the git history, you will see that Rodolfo Giometti
> <giometti@linux.it> originally added this code, so that is who you need
> to copy on any patch.
I see, I see, thank you very much.
>
> > > > 1 files changed, 2 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/include/linux/c2port.h b/include/linux/c2port.h
> > > > index 2a5cd86..7e6bd33 100644
> > > > --- a/include/linux/c2port.h
> > > > +++ b/include/linux/c2port.h
> > > > @@ -60,8 +60,8 @@ struct c2port_ops {
> > > > * Exported functions
> > > > */
> > > >
> > > > -#define to_class_dev(obj) container_of((obj), struct class_device, kobj)
> > > > -#define to_c2port_device(obj) container_of((obj), struct c2port_device, class)
> > > > +#define to_device(obj) container_of(obj, struct device, kobj)
> > > > +#define to_c2port_device(obj) container_of(obj, struct c2port_device, dev.kobj)
> > >
> > > Doesn't this break the build? If not, something is really wrong here.
> > The interface just exported but not used in the kernel code, so it will
> > not break the build. The class_device structure is deprecated in your
> > driver-core, so it really has something wrong here.
>
> What is wrong is that these macros are never used, otherwise they would
> break the build. So I'm pretty sure you can just remove them safely,
> but run it by Rodolfo first please.
Thanks a lot for your tips, I'll just remove it.
>
> thanks,
>
> greg k-h
Best regards
Wanlong Gao
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-05 14:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-05 12:29 [PATCH] C2port:Fix deprecated exported interfaces c2port.h Wanlong Gao
2011-05-05 14:10 ` Greg KH
2011-05-05 14:30 ` Wanlong Gao
2011-05-05 14:39 ` Greg KH
2011-05-05 14:54 ` Wanlong Gao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox