2012-05-18 18:11:23

by Jeffrin Jose

[permalink] [raw]
Subject: [PATCH 452/452]USB :storage:fixed space at the start of a line issues.

Fixed space at the start of a line issues found
by checkpatch.pl tool in drivers/usb/storage/usual-tables.c

Signed-off-by: Jeffrin Jose <[email protected]>
---
drivers/usb/storage/usual-tables.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/storage/usual-tables.c b/drivers/usb/storage/usual-tables.c
index b969279..f2301ee 100644
--- a/drivers/usb/storage/usual-tables.c
+++ b/drivers/usb/storage/usual-tables.c
@@ -34,17 +34,17 @@
vendorName, productName, useProtocol, useTransport, \
initFunction, flags) \
{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
- .driver_info = (flags)|(USB_US_TYPE_STOR<<24) }
+.driver_info = (flags)|(USB_US_TYPE_STOR<<24) }

#define COMPLIANT_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
vendorName, productName, useProtocol, useTransport, \
initFunction, flags) \
{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
- .driver_info = (flags) }
+.driver_info = (flags) }

#define USUAL_DEV(useProto, useTrans, useType) \
{ USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, useProto, useTrans), \
- .driver_info = ((useType)<<24) }
+.driver_info = ((useType)<<24) }

struct usb_device_id usb_storage_usb_ids[] = {
# include "unusual_devs.h"
--
1.7.10


2012-05-18 18:21:57

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH 452/452]USB :storage:fixed space at the start of a line issues.

On Fri, May 18, 2012 at 11:44:35PM +0530, Jeffrin Jose wrote:
> Fixed space at the start of a line issues found
> by checkpatch.pl tool in drivers/usb/storage/usual-tables.c
>
> Signed-off-by: Jeffrin Jose <[email protected]>

Interesing use of spaces in the Subject line, not to mention where are
the 451 other patches that are supposed to be in this series?

Also, please use the scripts/get_maintainer.pl tool to figure out what
mailing list to send patches to (hint, you forgot a few...)

Care to try again?

thanks,

greg k-h