diff options
author | Felipe Balbi | 2014-08-20 13:38:18 -0500 |
---|---|---|
committer | Felipe Balbi | 2014-08-20 13:38:18 -0500 |
commit | 8f90afd918886f10ac82aded9a30edfd80f2f69b (patch) | |
tree | f61ce49ea27ca6c947bf7efa786a3ffb9b940ec1 /drivers/usb/phy | |
parent | 0dafc3d94596522787e216711d305add1c1dce99 (diff) |
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 <balbi@ti.com>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/phy-msm-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |