mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c
@ 2003-09-29 11:14 Shine Mohamed
  2003-09-29 17:27 ` Randy.Dunlap
  2003-10-01  9:01 ` Rusty Russell
  0 siblings, 2 replies; 6+ messages in thread
From: Shine Mohamed @ 2003-09-29 11:14 UTC (permalink / raw)
  To: trivial, linux-kernel

Quick patch to  Initialize  the module parameters in 
drivers/net/wireless/arlan-main.c


--- drivers/net/wireless/arlan-main.c.orig      2003-09-29 16:40:33.000000000 
+0530
+++ drivers/net/wireless/arlan-main.c   2003-09-29 16:40:18.000000000 +0530
@@ -33,6 +33,7 @@
 static int retries = 5;
 static int tx_queue_len = 1;
 static int arlan_EEPROM_bad;
+static int probe = 0; /* Initially it is setting to be 'Probing Disabled' */

 #ifdef ARLAN_DEBUGGING



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

* Re: [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c
  2003-09-29 11:14 [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c Shine Mohamed
@ 2003-09-29 17:27 ` Randy.Dunlap
  2003-10-01  9:01 ` Rusty Russell
  1 sibling, 0 replies; 6+ messages in thread
From: Randy.Dunlap @ 2003-09-29 17:27 UTC (permalink / raw)
  To: Shine Mohamed; +Cc: trivial, linux-kernel

On Mon, 29 Sep 2003 16:44:06 +0530 Shine Mohamed <shinemohamed_j@naturesoft.net> wrote:

| Quick patch to  Initialize  the module parameters in 
| drivers/net/wireless/arlan-main.c
| 
| 
| --- drivers/net/wireless/arlan-main.c.orig      2003-09-29 16:40:33.000000000 
| +0530
| +++ drivers/net/wireless/arlan-main.c   2003-09-29 16:40:18.000000000 +0530
| @@ -33,6 +33,7 @@
|  static int retries = 5;
|  static int tx_queue_len = 1;
|  static int arlan_EEPROM_bad;
| +static int probe = 0; /* Initially it is setting to be 'Probing Disabled' */

Yes, it does need to be declared, but it doesn't need to be init
to 0.

--
~Randy

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

* Re: [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c
  2003-09-29 11:14 [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c Shine Mohamed
  2003-09-29 17:27 ` Randy.Dunlap
@ 2003-10-01  9:01 ` Rusty Russell
  2003-10-02  3:52   ` Randy.Dunlap
  1 sibling, 1 reply; 6+ messages in thread
From: Rusty Russell @ 2003-10-01  9:01 UTC (permalink / raw)
  To: Shine Mohamed; +Cc: linux-kernel

In message <200309291644.06043.shinemohamed_j@naturesoft.net> you write:
> Quick patch to  Initialize  the module parameters in 
> drivers/net/wireless/arlan-main.c
> @@ -33,6 +33,7 @@
>  static int retries = 5;
>  static int tx_queue_len = 1;
>  static int arlan_EEPROM_bad;
> +static int probe = 0; /* Initially it is setting to be 'Probing Disabled' */
> 
>  #ifdef ARLAN_DEBUGGING

This is clearly wrong: it's declared below.

Rusty.
--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

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

* Re: [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c
  2003-10-01  9:01 ` Rusty Russell
@ 2003-10-02  3:52   ` Randy.Dunlap
  2003-10-02  5:18     ` Rusty Russell
  0 siblings, 1 reply; 6+ messages in thread
From: Randy.Dunlap @ 2003-10-02  3:52 UTC (permalink / raw)
  To: Rusty Russell; +Cc: shinemohamed_j, linux-kernel

On Wed, 01 Oct 2003 19:01:04 +1000 Rusty Russell <rusty@rustcorp.com.au> wrote:

| In message <200309291644.06043.shinemohamed_j@naturesoft.net> you write:
| > Quick patch to  Initialize  the module parameters in 
| > drivers/net/wireless/arlan-main.c
| > @@ -33,6 +33,7 @@
| >  static int retries = 5;
| >  static int tx_queue_len = 1;
| >  static int arlan_EEPROM_bad;
| > +static int probe = 0; /* Initially it is setting to be 'Probing Disabled' */
| > 
| >  #ifdef ARLAN_DEBUGGING
| 
| This is clearly wrong: it's declared below.

Hello.  Anybody there?

This is what you get with 2.6.0-test6 plain vanilla:

[rddunlap@midway linux-260-test6-work]$ make modules
  SPLIT   include/linux/autoconf.h -> include/config/*
make[1]: `arch/i386/kernel/asm-offsets.s' is up to date.
  CC [M]  drivers/net/wireless/arlan-main.o
drivers/net/wireless/arlan-main.c: In function `init_module':
drivers/net/wireless/arlan-main.c:1923: `probe' undeclared (first use in this function)
drivers/net/wireless/arlan-main.c:1923: (Each undeclared identifier is reported only once
drivers/net/wireless/arlan-main.c:1923: for each function it appears in.)
make[3]: *** [drivers/net/wireless/arlan-main.o] Error 1
make[2]: *** [drivers/net/wireless] Error 2
make[1]: *** [drivers/net] Error 2
make: *** [drivers] Error 2


so is MODULE_PARM(probe, "i");
supposed to be declaring <probe>?  It's not.
If it is supposed to be, then why are most/many/all other MODULE_PARM's
in that file also declared separately (i.e., again)?


The only wrong part I see is that it doesn't need to be init to 0.

--
~Randy

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

* Re: [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c
  2003-10-02  3:52   ` Randy.Dunlap
@ 2003-10-02  5:18     ` Rusty Russell
  2003-10-03  4:36       ` Shine Mohamed
  0 siblings, 1 reply; 6+ messages in thread
From: Rusty Russell @ 2003-10-02  5:18 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: shinemohamed_j, linux-kernel

In message <20031001205228.3bee8c69.rddunlap@osdl.org> you write:
> On Wed, 01 Oct 2003 19:01:04 +1000 Rusty Russell <rusty@rustcorp.com.au> wrote:
> | This is clearly wrong: it's declared below.
> 
> Hello.  Anybody there?
> 
> This is what you get with 2.6.0-test6 plain vanilla:
> drivers/net/wireless/arlan-main.c:1923: `probe' undeclared (first use in this function)
> drivers/net/wireless/arlan-main.c:1923: (Each undeclared identifier is reported only once
> drivers/net/wireless/arlan-main.c:1923: for each function it appears in.)

See line 1885:

	#ifdef  MODULE

	static int probe = probeUNKNOWN;

	static int __init arlan_find_devices(void)

Hope that helps,
Rusty.
--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

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

* Re: [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c
  2003-10-02  5:18     ` Rusty Russell
@ 2003-10-03  4:36       ` Shine Mohamed
  0 siblings, 0 replies; 6+ messages in thread
From: Shine Mohamed @ 2003-10-03  4:36 UTC (permalink / raw)
  To: Rusty Russell, Randy.Dunlap; +Cc: linux-kernel

On Thursday 02 October 2003 10:48, Rusty Russell wrote:
> In message <20031001205228.3bee8c69.rddunlap@osdl.org> you write:
> > On Wed, 01 Oct 2003 19:01:04 +1000 Rusty Russell <rusty@rustcorp.com.au> 
wrote:
> > | This is clearly wrong: it's declared below.
> >
> > Hello.  Anybody there?
> >
> > This is what you get with 2.6.0-test6 plain vanilla:
> > drivers/net/wireless/arlan-main.c:1923: `probe' undeclared (first use in
> > this function) drivers/net/wireless/arlan-main.c:1923: (Each undeclared
> > identifier is reported only once drivers/net/wireless/arlan-main.c:1923:
> > for each function it appears in.)
>
> See line 1885:
>
> 	#ifdef  MODULE
>
> 	static int probe = probeUNKNOWN;

This declaration was added only in 2.6.0-test6-bk1
not in the vanilla 2.6.0-test6


>
> 	static int __init arlan_find_devices(void)
>
> Hope that helps,
> Rusty.
> --
>   Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

Regards,
Shine Mohamed

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

end of thread, other threads:[~2003-10-03  4:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-29 11:14 [PATCH] Initializedd the module parameters in drivers/net/wireless/arlan-main.c Shine Mohamed
2003-09-29 17:27 ` Randy.Dunlap
2003-10-01  9:01 ` Rusty Russell
2003-10-02  3:52   ` Randy.Dunlap
2003-10-02  5:18     ` Rusty Russell
2003-10-03  4:36       ` Shine Mohamed

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