phy: ingenic: Remove useless field .version
Remove the useless field .version from the private structure, which is set but never read. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Reviewed-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com> Link: https://lore.kernel.org/r/20201223124505.40792-1-paul@crapouillou.net Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
266df28f9a
commit
a9dfa098b7
@ -82,18 +82,7 @@
|
|||||||
#define USBPCR1_PORT_RST BIT(21)
|
#define USBPCR1_PORT_RST BIT(21)
|
||||||
#define USBPCR1_WORD_IF_16BIT BIT(19)
|
#define USBPCR1_WORD_IF_16BIT BIT(19)
|
||||||
|
|
||||||
enum ingenic_usb_phy_version {
|
|
||||||
ID_JZ4770,
|
|
||||||
ID_JZ4775,
|
|
||||||
ID_JZ4780,
|
|
||||||
ID_X1000,
|
|
||||||
ID_X1830,
|
|
||||||
ID_X2000,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ingenic_soc_info {
|
struct ingenic_soc_info {
|
||||||
enum ingenic_usb_phy_version version;
|
|
||||||
|
|
||||||
void (*usb_phy_init)(struct phy *phy);
|
void (*usb_phy_init)(struct phy *phy);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -300,38 +289,26 @@ static void x2000_usb_phy_init(struct phy *phy)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct ingenic_soc_info jz4770_soc_info = {
|
static const struct ingenic_soc_info jz4770_soc_info = {
|
||||||
.version = ID_JZ4770,
|
|
||||||
|
|
||||||
.usb_phy_init = jz4770_usb_phy_init,
|
.usb_phy_init = jz4770_usb_phy_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct ingenic_soc_info jz4775_soc_info = {
|
static const struct ingenic_soc_info jz4775_soc_info = {
|
||||||
.version = ID_JZ4775,
|
|
||||||
|
|
||||||
.usb_phy_init = jz4775_usb_phy_init,
|
.usb_phy_init = jz4775_usb_phy_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct ingenic_soc_info jz4780_soc_info = {
|
static const struct ingenic_soc_info jz4780_soc_info = {
|
||||||
.version = ID_JZ4780,
|
|
||||||
|
|
||||||
.usb_phy_init = jz4780_usb_phy_init,
|
.usb_phy_init = jz4780_usb_phy_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct ingenic_soc_info x1000_soc_info = {
|
static const struct ingenic_soc_info x1000_soc_info = {
|
||||||
.version = ID_X1000,
|
|
||||||
|
|
||||||
.usb_phy_init = x1000_usb_phy_init,
|
.usb_phy_init = x1000_usb_phy_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct ingenic_soc_info x1830_soc_info = {
|
static const struct ingenic_soc_info x1830_soc_info = {
|
||||||
.version = ID_X1830,
|
|
||||||
|
|
||||||
.usb_phy_init = x1830_usb_phy_init,
|
.usb_phy_init = x1830_usb_phy_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct ingenic_soc_info x2000_soc_info = {
|
static const struct ingenic_soc_info x2000_soc_info = {
|
||||||
.version = ID_X2000,
|
|
||||||
|
|
||||||
.usb_phy_init = x2000_usb_phy_init,
|
.usb_phy_init = x2000_usb_phy_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user