diff options
author | Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> | 2015-01-03 19:11:21 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-01-22 11:03:53 -0500 |
commit | 5dd6eeb2c0c3f5e1364b51a11a7e47629655b6ff (patch) | |
tree | 02bd835ff10923a06f5e2486310d8d2420f633a2 /drivers/mfd/omap-usb-host.c | |
parent | de1e23f83441d1f44f12e56b1e972b728a821f32 (diff) |
mfd: omap-usb-host: Remove some unused functions
Removes some functions that are not used anywhere:
usbhs_readb() usbhs_writeb()
This was partially found by using a static code analysis program called cppcheck.
Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/omap-usb-host.c')
-rw-r--r-- | drivers/mfd/omap-usb-host.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/mfd/omap-usb-host.c b/drivers/mfd/omap-usb-host.c index 04cd54dd507c..1d924d1533c0 100644 --- a/drivers/mfd/omap-usb-host.c +++ b/drivers/mfd/omap-usb-host.c | |||
@@ -129,16 +129,6 @@ static inline u32 usbhs_read(void __iomem *base, u32 reg) | |||
129 | return readl_relaxed(base + reg); | 129 | return readl_relaxed(base + reg); |
130 | } | 130 | } |
131 | 131 | ||
132 | static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val) | ||
133 | { | ||
134 | writeb_relaxed(val, base + reg); | ||
135 | } | ||
136 | |||
137 | static inline u8 usbhs_readb(void __iomem *base, u8 reg) | ||
138 | { | ||
139 | return readb_relaxed(base + reg); | ||
140 | } | ||
141 | |||
142 | /*-------------------------------------------------------------------------*/ | 132 | /*-------------------------------------------------------------------------*/ |
143 | 133 | ||
144 | /** | 134 | /** |