]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: phy: am335x-control: include appropriate header file in phy-am335x-control.c
authorRashika Kheria <rashika.kheria@gmail.com>
Thu, 19 Dec 2013 10:14:34 +0000 (15:44 +0530)
committerFelipe Balbi <balbi@ti.com>
Thu, 19 Dec 2013 15:27:42 +0000 (09:27 -0600)
Include header file drivers/usb/phy/am35x-phy-control.h in
phy/phy-am335x-control.c because function am335x_get_phy_control() has
its prototype declaration in drivers/usb/phy/am35x-phy-control.h.

Also, remove definition of structure phy_control because it is already
defined in the included header.

This eliminates the following warning in phy/phy-am335x-control.c:
drivers/usb/phy/phy-am335x-control.c:114:21: warning: no previous prototype for ‘am335x_get_phy_control’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/phy/phy-am335x-control.c

index 634f49acd20e58154d02177c4e49781e51754c8d..d75196ad5f2f6e7a13a76e16f283464ae875507e 100644 (file)
@@ -3,11 +3,7 @@
 #include <linux/err.h>
 #include <linux/of.h>
 #include <linux/io.h>
-
-struct phy_control {
-       void (*phy_power)(struct phy_control *phy_ctrl, u32 id, bool on);
-       void (*phy_wkup)(struct phy_control *phy_ctrl, u32 id, bool on);
-};
+#include "am35x-phy-control.h"
 
 struct am335x_control_usb {
        struct device *dev;