From: Felipe Balbi Date: Wed, 20 Aug 2014 18:38:18 +0000 (-0500) Subject: usb: phy: msm: mark msm_otg_mode_fops static X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=8f90afd918886f10ac82aded9a30edfd80f2f69b;p=deliverable%2Flinux.git usb: phy: msm: mark msm_otg_mode_fops static that declaration is only used inside this driver, marking it static. Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/phy/phy-msm-usb.c b/drivers/usb/phy/phy-msm-usb.c index e4108eec5ef4..df8e1ba56509 100644 --- a/drivers/usb/phy/phy-msm-usb.c +++ b/drivers/usb/phy/phy-msm-usb.c @@ -1394,7 +1394,7 @@ out: return status; } -const struct file_operations msm_otg_mode_fops = { +static const struct file_operations msm_otg_mode_fops = { .open = msm_otg_mode_open, .read = seq_read, .write = msm_otg_mode_write,