All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-09-28 23:34 ` Peter Huewe
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Huewe @ 2009-09-28 23:34 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Alan Cox, devel, linux-kernel, Jiri Kosina, kernel-janitors

From: Peter Huewe <peterhuewe@gmx.de>

Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of ./staging/et131x/et131x_initpci.c

Greg, please have a look at the small patch and either pull it through
your staging tree, or please ack' it so Jiri can pull it through the trivial tree.

linux version v2.6.32-rc1 - linus git tree, Di 29. Sep 01:10:18 CEST 2009

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
diff --git a/drivers/staging/et131x/et131x_initpci.c b/drivers/staging/et131x/et131x_initpci.c
index 9db2056..5ec0d5b 100644
--- a/drivers/staging/et131x/et131x_initpci.c
+++ b/drivers/staging/et131x/et131x_initpci.c
@@ -989,7 +989,7 @@ static struct pci_driver et131x_driver = {
  *
  * Returns 0 on success, errno on failure (as defined in errno.h)
  */
-static int et131x_init_module(void)
+static int __init et131x_init_module(void)
 {
 	if (et131x_speed_set < PARM_SPEED_DUPLEX_MIN ||
 	    et131x_speed_set > PARM_SPEED_DUPLEX_MAX) {
@@ -1002,7 +1002,7 @@ static int et131x_init_module(void)
 /**
  * et131x_cleanup_module - The entry point called on driver cleanup
  */
-static void et131x_cleanup_module(void)
+static void __exit et131x_cleanup_module(void)
 {
 	pci_unregister_driver(&et131x_driver);
 }

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

* [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-09-28 23:34 ` Peter Huewe
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Huewe @ 2009-09-28 23:34 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Alan Cox, devel, linux-kernel, Jiri Kosina, kernel-janitors

From: Peter Huewe <peterhuewe@gmx.de>

Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of ./staging/et131x/et131x_initpci.c

Greg, please have a look at the small patch and either pull it through
your staging tree, or please ack' it so Jiri can pull it through the trivial tree.

linux version v2.6.32-rc1 - linus git tree, Di 29. Sep 01:10:18 CEST 2009

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
diff --git a/drivers/staging/et131x/et131x_initpci.c b/drivers/staging/et131x/et131x_initpci.c
index 9db2056..5ec0d5b 100644
--- a/drivers/staging/et131x/et131x_initpci.c
+++ b/drivers/staging/et131x/et131x_initpci.c
@@ -989,7 +989,7 @@ static struct pci_driver et131x_driver = {
  *
  * Returns 0 on success, errno on failure (as defined in errno.h)
  */
-static int et131x_init_module(void)
+static int __init et131x_init_module(void)
 {
 	if (et131x_speed_set < PARM_SPEED_DUPLEX_MIN ||
 	    et131x_speed_set > PARM_SPEED_DUPLEX_MAX) {
@@ -1002,7 +1002,7 @@ static int et131x_init_module(void)
 /**
  * et131x_cleanup_module - The entry point called on driver cleanup
  */
-static void et131x_cleanup_module(void)
+static void __exit et131x_cleanup_module(void)
 {
 	pci_unregister_driver(&et131x_driver);
 }

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
  2009-09-28 23:34 ` Peter Huewe
@ 2009-09-29  9:10   ` Jiri Kosina
  -1 siblings, 0 replies; 14+ messages in thread
From: Jiri Kosina @ 2009-09-29  9:10 UTC (permalink / raw)
  To: Peter Huewe
  Cc: Greg Kroah-Hartman, Alan Cox, devel, linux-kernel, kernel-janitors

On Tue, 29 Sep 2009, Peter Huewe wrote:

> From: Peter Huewe <peterhuewe@gmx.de>
> 
> Trivial patch which adds the __init/__exit macros to the module_init/
> module_exit functions of ./staging/et131x/et131x_initpci.c
> 
> Greg, please have a look at the small patch and either pull it through
> your staging tree, or please ack' it so Jiri can pull it through the trivial tree.

Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as 
I expect we'll be conflicting soon due to the speed of changes in staging 
area, if you don't have any objections.

Thanks,

-- 
Jiri Kosina
SUSE Labs, Novell Inc.

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-09-29  9:10   ` Jiri Kosina
  0 siblings, 0 replies; 14+ messages in thread
From: Jiri Kosina @ 2009-09-29  9:10 UTC (permalink / raw)
  To: Peter Huewe
  Cc: Greg Kroah-Hartman, Alan Cox, devel, linux-kernel, kernel-janitors

On Tue, 29 Sep 2009, Peter Huewe wrote:

> From: Peter Huewe <peterhuewe@gmx.de>
> 
> Trivial patch which adds the __init/__exit macros to the module_init/
> module_exit functions of ./staging/et131x/et131x_initpci.c
> 
> Greg, please have a look at the small patch and either pull it through
> your staging tree, or please ack' it so Jiri can pull it through the trivial tree.

Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as 
I expect we'll be conflicting soon due to the speed of changes in staging 
area, if you don't have any objections.

Thanks,

-- 
Jiri Kosina
SUSE Labs, Novell Inc.

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
  2009-09-28 23:34 ` Peter Huewe
@ 2009-09-29 10:57   ` Alan Cox
  -1 siblings, 0 replies; 14+ messages in thread
From: Alan Cox @ 2009-09-29 10:57 UTC (permalink / raw)
  To: Peter Huewe
  Cc: Greg Kroah-Hartman, Alan Cox, devel, linux-kernel, Jiri Kosina,
	kernel-janitors

On Tue, 29 Sep 2009 01:34:14 +0200
Peter Huewe <PeterHuewe@gmx.de> wrote:

> From: Peter Huewe <peterhuewe@gmx.de>
> 
> Trivial patch which adds the __init/__exit macros to the module_init/
> module_exit functions of ./staging/et131x/et131x_initpci.c
> 
> Greg, please have a look at the small patch and either pull it through
> your staging tree, or please ack' it so Jiri can pull it through the trivial tree.
> 
> linux version v2.6.32-rc1 - linus git tree, Di 29. Sep 01:10:18 CEST 2009
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Acked-by: Alan Cox <alan@linux.intel.com>

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-09-29 10:57   ` Alan Cox
  0 siblings, 0 replies; 14+ messages in thread
From: Alan Cox @ 2009-09-29 10:57 UTC (permalink / raw)
  To: Peter Huewe
  Cc: Greg Kroah-Hartman, Alan Cox, devel, linux-kernel, Jiri Kosina,
	kernel-janitors

On Tue, 29 Sep 2009 01:34:14 +0200
Peter Huewe <PeterHuewe@gmx.de> wrote:

> From: Peter Huewe <peterhuewe@gmx.de>
> 
> Trivial patch which adds the __init/__exit macros to the module_init/
> module_exit functions of ./staging/et131x/et131x_initpci.c
> 
> Greg, please have a look at the small patch and either pull it through
> your staging tree, or please ack' it so Jiri can pull it through the trivial tree.
> 
> linux version v2.6.32-rc1 - linus git tree, Di 29. Sep 01:10:18 CEST 2009
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Acked-by: Alan Cox <alan@linux.intel.com>

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
  2009-09-29  9:10   ` Jiri Kosina
@ 2009-09-29 15:30     ` Greg KH
  -1 siblings, 0 replies; 14+ messages in thread
From: Greg KH @ 2009-09-29 15:30 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Peter Huewe, devel, kernel-janitors, linux-kernel, Alan Cox

On Tue, Sep 29, 2009 at 11:10:01AM +0200, Jiri Kosina wrote:
> On Tue, 29 Sep 2009, Peter Huewe wrote:
> 
> > From: Peter Huewe <peterhuewe@gmx.de>
> > 
> > Trivial patch which adds the __init/__exit macros to the module_init/
> > module_exit functions of ./staging/et131x/et131x_initpci.c
> > 
> > Greg, please have a look at the small patch and either pull it through
> > your staging tree, or please ack' it so Jiri can pull it through the trivial tree.
> 
> Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as 
> I expect we'll be conflicting soon due to the speed of changes in staging 
> area, if you don't have any objections.

No objection at all, I'll queue all of these up later today.

thanks,

greg k-h

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-09-29 15:30     ` Greg KH
  0 siblings, 0 replies; 14+ messages in thread
From: Greg KH @ 2009-09-29 15:30 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Peter Huewe, devel, kernel-janitors, linux-kernel, Alan Cox

On Tue, Sep 29, 2009 at 11:10:01AM +0200, Jiri Kosina wrote:
> On Tue, 29 Sep 2009, Peter Huewe wrote:
> 
> > From: Peter Huewe <peterhuewe@gmx.de>
> > 
> > Trivial patch which adds the __init/__exit macros to the module_init/
> > module_exit functions of ./staging/et131x/et131x_initpci.c
> > 
> > Greg, please have a look at the small patch and either pull it through
> > your staging tree, or please ack' it so Jiri can pull it through the trivial tree.
> 
> Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as 
> I expect we'll be conflicting soon due to the speed of changes in staging 
> area, if you don't have any objections.

No objection at all, I'll queue all of these up later today.

thanks,

greg k-h

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
  2009-09-29  9:10   ` Jiri Kosina
@ 2009-10-19 15:24     ` Peter Hüwe
  -1 siblings, 0 replies; 14+ messages in thread
From: Peter Hüwe @ 2009-10-19 15:24 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Jiri Kosina, Alan Cox, devel, linux-kernel, kernel-janitors

Am Tuesday 29 September 2009 11:10:01 schrieb Jiri Kosina:
> On Tue, 29 Sep 2009, Peter Huewe wrote:
> > From: Peter Huewe <peterhuewe@gmx.de>
> >
> > Trivial patch which adds the __init/__exit macros to the module_init/
> > module_exit functions of ./staging/et131x/et131x_initpci.c
> >
> > Greg, please have a look at the small patch and either pull it through
> > your staging tree, or please ack' it so Jiri can pull it through the
> > trivial tree.
>
> Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as
> I expect we'll be conflicting soon due to the speed of changes in staging
> area, if you don't have any objections.
>
> Thanks,


Hi Greg,

any updates on this patch?
If I should recreate the patch against the linux-next tree, or your staging 
tree, please tell me.

Same applies to 
[PATCH] staging/cx25821:  adding __init/__exit macros
[PATCH] staging/p9auth:  adding __init/__exit macros
[PATCH] staging/phison:  adding __init/__exit macros
and somewhat also to
[PATCH] staging/panel: prevent driver from calling misc_deregister twice on 
same ressource


Thanks,
Peter



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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-10-19 15:24     ` Peter Hüwe
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Hüwe @ 2009-10-19 15:24 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Jiri Kosina, Alan Cox, devel, linux-kernel, kernel-janitors

Am Tuesday 29 September 2009 11:10:01 schrieb Jiri Kosina:
> On Tue, 29 Sep 2009, Peter Huewe wrote:
> > From: Peter Huewe <peterhuewe@gmx.de>
> >
> > Trivial patch which adds the __init/__exit macros to the module_init/
> > module_exit functions of ./staging/et131x/et131x_initpci.c
> >
> > Greg, please have a look at the small patch and either pull it through
> > your staging tree, or please ack' it so Jiri can pull it through the
> > trivial tree.
>
> Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as
> I expect we'll be conflicting soon due to the speed of changes in staging
> area, if you don't have any objections.
>
> Thanks,


Hi Greg,

any updates on this patch?
If I should recreate the patch against the linux-next tree, or your staging 
tree, please tell me.

Same applies to 
[PATCH] staging/cx25821:  adding __init/__exit macros
[PATCH] staging/p9auth:  adding __init/__exit macros
[PATCH] staging/phison:  adding __init/__exit macros
and somewhat also to
[PATCH] staging/panel: prevent driver from calling misc_deregister twice on 
same ressource


Thanks,
Peter



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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
  2009-10-19 15:24     ` Peter Hüwe
@ 2009-10-19 21:43       ` Greg KH
  -1 siblings, 0 replies; 14+ messages in thread
From: Greg KH @ 2009-10-19 21:43 UTC (permalink / raw)
  To: Peter H?we; +Cc: Jiri Kosina, Alan Cox, devel, linux-kernel, kernel-janitors

On Mon, Oct 19, 2009 at 05:24:44PM +0200, Peter H?we wrote:
> Am Tuesday 29 September 2009 11:10:01 schrieb Jiri Kosina:
> > On Tue, 29 Sep 2009, Peter Huewe wrote:
> > > From: Peter Huewe <peterhuewe@gmx.de>
> > >
> > > Trivial patch which adds the __init/__exit macros to the module_init/
> > > module_exit functions of ./staging/et131x/et131x_initpci.c
> > >
> > > Greg, please have a look at the small patch and either pull it through
> > > your staging tree, or please ack' it so Jiri can pull it through the
> > > trivial tree.
> >
> > Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as
> > I expect we'll be conflicting soon due to the speed of changes in staging
> > area, if you don't have any objections.
> >
> > Thanks,
> 
> 
> Hi Greg,
> 
> any updates on this patch?
> If I should recreate the patch against the linux-next tree, or your staging 
> tree, please tell me.
> 
> Same applies to 
> [PATCH] staging/cx25821:  adding __init/__exit macros
> [PATCH] staging/p9auth:  adding __init/__exit macros
> [PATCH] staging/phison:  adding __init/__exit macros
> and somewhat also to
> [PATCH] staging/panel: prevent driver from calling misc_deregister twice on 
> same ressource

These patches are still in my queue, sorry, been really busy, and am now
at the Linux kernel summit this week.  I should get to them next week
when I return.

thanks for your patience,

greg k-h

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-10-19 21:43       ` Greg KH
  0 siblings, 0 replies; 14+ messages in thread
From: Greg KH @ 2009-10-19 21:43 UTC (permalink / raw)
  To: Peter H?we; +Cc: Jiri Kosina, Alan Cox, devel, linux-kernel, kernel-janitors

On Mon, Oct 19, 2009 at 05:24:44PM +0200, Peter H?we wrote:
> Am Tuesday 29 September 2009 11:10:01 schrieb Jiri Kosina:
> > On Tue, 29 Sep 2009, Peter Huewe wrote:
> > > From: Peter Huewe <peterhuewe@gmx.de>
> > >
> > > Trivial patch which adds the __init/__exit macros to the module_init/
> > > module_exit functions of ./staging/et131x/et131x_initpci.c
> > >
> > > Greg, please have a look at the small patch and either pull it through
> > > your staging tree, or please ack' it so Jiri can pull it through the
> > > trivial tree.
> >
> > Greg -- I'd prefer you taking trivial staging fixes through yoru tree, as
> > I expect we'll be conflicting soon due to the speed of changes in staging
> > area, if you don't have any objections.
> >
> > Thanks,
> 
> 
> Hi Greg,
> 
> any updates on this patch?
> If I should recreate the patch against the linux-next tree, or your staging 
> tree, please tell me.
> 
> Same applies to 
> [PATCH] staging/cx25821:  adding __init/__exit macros
> [PATCH] staging/p9auth:  adding __init/__exit macros
> [PATCH] staging/phison:  adding __init/__exit macros
> and somewhat also to
> [PATCH] staging/panel: prevent driver from calling misc_deregister twice on 
> same ressource

These patches are still in my queue, sorry, been really busy, and am now
at the Linux kernel summit this week.  I should get to them next week
when I return.

thanks for your patience,

greg k-h

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
  2009-10-19 21:43       ` Greg KH
@ 2009-10-19 22:04         ` Peter Huewe
  -1 siblings, 0 replies; 14+ messages in thread
From: Peter Huewe @ 2009-10-19 22:04 UTC (permalink / raw)
  To: Greg KH; +Cc: Jiri Kosina, Alan Cox, devel, linux-kernel, kernel-janitors

Am Monday 19 October 2009 23:43:51 schrieb Greg KH:
> These patches are still in my queue, sorry, been really busy, and am now
> at the Linux kernel summit this week.  I should get to them next week
> when I return.
>
> thanks for your patience,
>
> greg k-h

Absolutely no problem - sorry for bugging you.

Have a good time at the summit.
Peter


> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors"
> in the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] staging/et131x:  adding __init/__exit macros
@ 2009-10-19 22:04         ` Peter Huewe
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Huewe @ 2009-10-19 22:04 UTC (permalink / raw)
  To: Greg KH; +Cc: Jiri Kosina, Alan Cox, devel, linux-kernel, kernel-janitors

Am Monday 19 October 2009 23:43:51 schrieb Greg KH:
> These patches are still in my queue, sorry, been really busy, and am now
> at the Linux kernel summit this week.  I should get to them next week
> when I return.
>
> thanks for your patience,
>
> greg k-h

Absolutely no problem - sorry for bugging you.

Have a good time at the summit.
Peter


> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors"
> in the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2009-10-19 22:04 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-28 23:34 [PATCH] staging/et131x: adding __init/__exit macros Peter Huewe
2009-09-28 23:34 ` Peter Huewe
2009-09-29  9:10 ` Jiri Kosina
2009-09-29  9:10   ` Jiri Kosina
2009-09-29 15:30   ` Greg KH
2009-09-29 15:30     ` Greg KH
2009-10-19 15:24   ` Peter Hüwe
2009-10-19 15:24     ` Peter Hüwe
2009-10-19 21:43     ` Greg KH
2009-10-19 21:43       ` Greg KH
2009-10-19 22:04       ` Peter Huewe
2009-10-19 22:04         ` Peter Huewe
2009-09-29 10:57 ` Alan Cox
2009-09-29 10:57   ` Alan Cox

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.