Skip to content

Commit

Permalink
arm: omap3: twl: remove usb phy init data
Browse files Browse the repository at this point in the history
commit dbc9863 ("phy: remove the old lookup method") removes
struct phy_consumer but twl-common.c still uses the "phy_consumer"
structure resulting in the following compilation warning.

arch/arm/mach-omap2/twl-common.c:94:21: error: array type has
incomplete element type
 struct phy_consumer consumers[] = {

Removed using phy_consumer since twl4030 uses the new lookup
method.

Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
  • Loading branch information
Heikki Krogerus authored and Greg Kroah-Hartman committed Dec 11, 2014
1 parent 3ff6744 commit 81e1dad
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
12 changes: 1 addition & 11 deletions arch/arm/mach-omap2/twl-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,8 @@ void __init omap_pmic_late_init(void)
}

#if defined(CONFIG_ARCH_OMAP3)
struct phy_consumer consumers[] = {
PHY_CONSUMER("musb-hdrc.0", "usb"),
};

struct phy_init_data init_data = {
.consumers = consumers,
.num_consumers = ARRAY_SIZE(consumers),
};

static struct twl4030_usb_data omap3_usb_pdata = {
.usb_mode = T2_USB_MODE_ULPI,
.init_data = &init_data,
.usb_mode = T2_USB_MODE_ULPI,
};

static int omap3_batt_table[] = {
Expand Down
2 changes: 0 additions & 2 deletions include/linux/i2c/twl.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
#define __TWL_H_

#include <linux/types.h>
#include <linux/phy/phy.h>
#include <linux/input/matrix_keypad.h>

/*
Expand Down Expand Up @@ -634,7 +633,6 @@ enum twl4030_usb_mode {
struct twl4030_usb_data {
enum twl4030_usb_mode usb_mode;
unsigned long features;
struct phy_init_data *init_data;

int (*phy_init)(struct device *dev);
int (*phy_exit)(struct device *dev);
Expand Down

0 comments on commit 81e1dad

Please sign in to comment.