Browse Source

Staging: comedi: usbduxfast: remove .bss variable initialization

This patch removes explicit zeroing of usbduxfastsub
variable on init because it is in .bss section.

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Cc: Bernd Porr <BerndPorr@f2s.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Cc: David Schleef <ds@schleef.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Mariusz Kozlowski 16 years ago
parent
commit
38c39e43f9
1 changed files with 1 additions and 4 deletions
  1. 1 4
      drivers/staging/comedi/drivers/usbduxfast.c

+ 1 - 4
drivers/staging/comedi/drivers/usbduxfast.c

@@ -1875,11 +1875,8 @@ static void __init init_usb_devices(void)
 	 * they will become valid by the probe function
 	 * and then finally by the attach-function
 	 */
-	for (index = 0; index < NUMUSBDUXFAST; index++) {
-		memset(&(usbduxfastsub[index]), 0x00,
-			sizeof(usbduxfastsub[index]));
+	for (index = 0; index < NUMUSBDUXFAST; index++)
 		init_MUTEX(&(usbduxfastsub[index].sem));
-	}
 }
 
 /*