Re: [PATCH 1/1] atmel uaba : Adding invert vbus_pin

From: Sergei Shtylyov
Date: Mon Jan 04 2010 - 16:37:34 EST


Hello.

Eirik Aanonsen wrote:

Adding vbus_pin_inverted so that the usb detect pin can be active high or low.
This because depending on HW implementation it is better to have active low.
Also replaced the pio_get_value(udc->vbus_pin); with a call to vbus_is_present(udc);

Signed-off-by: Eirik Aanonsen <eaa@xxxxxxxxxxxxxx>
[...]
diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c
index 4e970cf..1c469d4 100644
--- a/drivers/usb/gadget/atmel_usba_udc.c
+++ b/drivers/usb/gadget/atmel_usba_udc.c
@@ -320,8 +320,17 @@ static inline void usba_cleanup_debugfs(struct usba_udc *udc)
static int vbus_is_present(struct usba_udc *udc)
{
if (gpio_is_valid(udc->vbus_pin))
- return gpio_get_value(udc->vbus_pin);
-
+ {
+ if(udc->vbus_pin_inverted)

Space missing after *if*.

+ {
+ if( gpio_get_value(udc->vbus_pin) == 1)

Space missing after *if* and there should be no space after (.

+ return 0;
+ else
+ return 1;

Why not simply:

return !gpio_get_value(udc->vbus_pin);


+ }
+ else

} and *else* should be on the same line.
Please run your patches thru scripts/checkpatch.pl before submitting...

WBR, Sergei


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/