diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-03 03:25:04 -0500 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2014-03-01 13:56:26 -0500 |
commit | ed093e6109865f8ee62c98fc002c04ae25fcd109 (patch) | |
tree | e2cac43ccaa00bd9b5cc947bff4fff16bab68080 | |
parent | b6d790f793f0082df18f3f6c8a7b1b3fb255c88e (diff) |
usb: phy: twl4030-usb: Remove redundant semicolon
Semicolon after switch statement is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r-- | drivers/phy/phy-twl4030-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-twl4030-usb.c b/drivers/phy/phy-twl4030-usb.c index 6c7cec7d0a1d..2e0e9b3774c8 100644 --- a/drivers/phy/phy-twl4030-usb.c +++ b/drivers/phy/phy-twl4030-usb.c | |||
@@ -338,7 +338,7 @@ static void twl4030_usb_set_mode(struct twl4030_usb *twl, int mode) | |||
338 | dev_err(twl->dev, "unsupported T2 transceiver mode %d\n", | 338 | dev_err(twl->dev, "unsupported T2 transceiver mode %d\n", |
339 | mode); | 339 | mode); |
340 | break; | 340 | break; |
341 | }; | 341 | } |
342 | } | 342 | } |
343 | 343 | ||
344 | static void twl4030_i2c_access(struct twl4030_usb *twl, int on) | 344 | static void twl4030_i2c_access(struct twl4030_usb *twl, int on) |