Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758326Ab3FABgZ (ORCPT ); Fri, 31 May 2013 21:36:25 -0400 Received: from mail-pb0-f47.google.com ([209.85.160.47]:49870 "EHLO mail-pb0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757707Ab3FABfx (ORCPT ); Fri, 31 May 2013 21:35:53 -0400 From: Julius Werner To: Greg Kroah-Hartman Cc: Dongjin Kim , Fengguang Wu , Wei Yongjun , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, Simon Glass , Doug Anderson , Olof Johansson , Vivek Gautam , Julius Werner Subject: [PATCH 1/3] usb: misc: usb3503: Fix up whitespace Date: Fri, 31 May 2013 18:34:50 -0700 Message-Id: <1370050492-6046-2-git-send-email-jwerner@chromium.org> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1370050492-6046-1-git-send-email-jwerner@chromium.org> References: <1370050492-6046-1-git-send-email-jwerner@chromium.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1088 Lines: 28 Remove an erroneous tab that should be a space. Signed-off-by: Julius Werner --- drivers/usb/misc/usb3503.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/misc/usb3503.c b/drivers/usb/misc/usb3503.c index d3a1cce..73aeb87 100644 --- a/drivers/usb/misc/usb3503.c +++ b/drivers/usb/misc/usb3503.c @@ -208,7 +208,7 @@ static int usb3503_probe(struct i2c_client *i2c, const struct i2c_device_id *id) hub->gpio_connect = of_get_named_gpio(np, "intn-gpios", 0); if (hub->gpio_connect == -EPROBE_DEFER) return -EPROBE_DEFER; - hub->gpio_reset = of_get_named_gpio(np, "reset-gpios", 0); + hub->gpio_reset = of_get_named_gpio(np, "reset-gpios", 0); if (hub->gpio_reset == -EPROBE_DEFER) return -EPROBE_DEFER; of_property_read_u32(np, "initial-mode", &mode); -- 1.7.12.4 -- 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/