Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 660479aa authored by Sachin Kamat's avatar Sachin Kamat Committed by Felipe Balbi
Browse files

usb: host: fsl-mph-dr-of: Staticize local symbols



Local symbols used in this file are made static.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Anatolij Gustschin <agust@denx.de>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 5c18a363
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@ struct fsl_usb2_dev_data {
	enum fsl_usb2_operating_modes op_mode;	/* operating mode */
	enum fsl_usb2_operating_modes op_mode;	/* operating mode */
};
};


struct fsl_usb2_dev_data dr_mode_data[] = {
static struct fsl_usb2_dev_data dr_mode_data[] = {
	{
	{
		.dr_mode = "host",
		.dr_mode = "host",
		.drivers = { "fsl-ehci", NULL, NULL, },
		.drivers = { "fsl-ehci", NULL, NULL, },
@@ -42,7 +42,7 @@ struct fsl_usb2_dev_data dr_mode_data[] = {
	},
	},
};
};


struct fsl_usb2_dev_data *get_dr_mode_data(struct device_node *np)
static struct fsl_usb2_dev_data *get_dr_mode_data(struct device_node *np)
{
{
	const unsigned char *prop;
	const unsigned char *prop;
	int i;
	int i;
@@ -75,7 +75,7 @@ static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
	return FSL_USB2_PHY_NONE;
	return FSL_USB2_PHY_NONE;
}
}


struct platform_device *fsl_usb2_device_register(
static struct platform_device *fsl_usb2_device_register(
					struct platform_device *ofdev,
					struct platform_device *ofdev,
					struct fsl_usb2_platform_data *pdata,
					struct fsl_usb2_platform_data *pdata,
					const char *name, int id)
					const char *name, int id)