Browse Source

usb: otg: isp1301_omap: fix compile error

commit 91c8a5a9985d5bf9c55f6f82f183f57b050b2a3a broke
compilation of this driver after it introduced
otg_init() as a static inline in <linux/usb/otg.h>

Reported-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Felipe Balbi 15 năm trước cách đây
mục cha
commit
465f8294ee
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      drivers/usb/otg/isp1301_omap.c

+ 2 - 2
drivers/usb/otg/isp1301_omap.c

@@ -843,7 +843,7 @@ static irqreturn_t omap_otg_irq(int irq, void *_isp)
 
 
 static struct platform_device *otg_dev;
 static struct platform_device *otg_dev;
 
 
-static int otg_init(struct isp1301 *isp)
+static int isp1301_otg_init(struct isp1301 *isp)
 {
 {
 	u32 l;
 	u32 l;
 
 
@@ -1275,7 +1275,7 @@ static int __exit isp1301_remove(struct i2c_client *i2c)
 static int isp1301_otg_enable(struct isp1301 *isp)
 static int isp1301_otg_enable(struct isp1301 *isp)
 {
 {
 	power_up(isp);
 	power_up(isp);
-	otg_init(isp);
+	isp1301_otg_init(isp);
 
 
 	/* NOTE:  since we don't change this, this provides
 	/* NOTE:  since we don't change this, this provides
 	 * a few more interrupts than are strictly needed.
 	 * a few more interrupts than are strictly needed.