public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] remove unnecessary zero initializations from aironet4500_proc.c (245ac1)
@ 2001-05-28 20:31 Rasmus Andersen
  2001-06-01 17:02 ` Pavel Machek
  0 siblings, 1 reply; 2+ messages in thread
From: Rasmus Andersen @ 2001-05-28 20:31 UTC (permalink / raw)
  To: linux-kernel

(Forgot l-k again... :<)

----- Forwarded message from Rasmus Andersen <rasmus@jaquet.dk> -----

Hi.

The following patch removes two superfluous initializations
from aironet4500_proc.c, making the .o ~12K smaller in
size. It applies against 245ac1 and was discovered by Adam
Ritcher some time ago.
 
--- linux-245-ac1-clean/drivers/net/aironet4500_proc.c	Sat May 19 20:58:24 2001
+++ linux-245-ac1/drivers/net/aironet4500_proc.c	Mon May 28 22:13:26 2001
@@ -59,7 +59,7 @@
 	char 				proc_name[10];
 };	        
 static char awc_drive_info[AWC_STR_SIZE]="Zcom \n\0";
-static char awc_proc_buff[AWC_STR_SIZE]="\0";
+static char awc_proc_buff[AWC_STR_SIZE];
 static int  awc_int_buff;
 static struct awc_proc_private awc_proc_priv[MAX_AWCS]; 
 
@@ -403,7 +403,7 @@
         {0}
 };
 
-struct ctl_table_header * awc_driver_sysctl_header = NULL;
+struct ctl_table_header * awc_driver_sysctl_header;
 
 const char awc_procname[]= "awc5";
-- 
        Rasmus(rasmus@jaquet.dk)

"If you aim the gun at your foot and pull the trigger, it's UNIX's job to 
ensure reliable delivery of the bullet to where you aimed the gun (in
this case, Mr. Foot)." -- Terry Lambert, FreeBSD-Hackers mailing list.

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

* Re: [PATCH] remove unnecessary zero initializations from aironet4500_proc.c (245ac1)
  2001-05-28 20:31 [PATCH] remove unnecessary zero initializations from aironet4500_proc.c (245ac1) Rasmus Andersen
@ 2001-06-01 17:02 ` Pavel Machek
  0 siblings, 0 replies; 2+ messages in thread
From: Pavel Machek @ 2001-06-01 17:02 UTC (permalink / raw)
  To: Rasmus Andersen, linux-kernel

Hi!

> Hi.
> 
> The following patch removes two superfluous initializations
> from aironet4500_proc.c, making the .o ~12K smaller in
> size. It applies against 245ac1 and was discovered by Adam
> Ritcher some time ago.
>  
> --- linux-245-ac1-clean/drivers/net/aironet4500_proc.c	Sat May 19 20:58:24 2001
> +++ linux-245-ac1/drivers/net/aironet4500_proc.c	Mon May 28 22:13:26 2001
> @@ -59,7 +59,7 @@
>  	char 				proc_name[10];
>  };	        
>  static char awc_drive_info[AWC_STR_SIZE]="Zcom \n\0";
						    ~~
When you are at cleaning, kill that ugly \0, too.
	
> -static char awc_proc_buff[AWC_STR_SIZE]="\0";
> +static char awc_proc_buff[AWC_STR_SIZE];



>  static int  awc_int_buff;
>  static struct awc_proc_private awc_proc_priv[MAX_AWCS]; 
>  
> @@ -403,7 +403,7 @@
>          {0}
>  };
>  
> -struct ctl_table_header * awc_driver_sysctl_header = NULL;
> +struct ctl_table_header * awc_driver_sysctl_header;
>  
>  const char awc_procname[]= "awc5";
								Pavel

-- 
I'm pavel@ucw.cz. "In my country we have almost anarchy and I don't care."
Panos Katsaloulis describing me w.r.t. patents at discuss@linmodems.org

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

end of thread, other threads:[~2001-06-01 18:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-28 20:31 [PATCH] remove unnecessary zero initializations from aironet4500_proc.c (245ac1) Rasmus Andersen
2001-06-01 17:02 ` Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox