Commit 1c574993 authored by Wolfram Sang's avatar Wolfram Sang

i2c: pmcmsp: remove dead code

CPPCHECK rightfully says:

drivers/i2c/busses/i2c-pmcmsp.c:151: style: The function 'pmcmsptwi_reg_to_clock' is never used.
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 523c5b89
...@@ -148,13 +148,6 @@ static inline u32 pmcmsptwi_clock_to_reg( ...@@ -148,13 +148,6 @@ static inline u32 pmcmsptwi_clock_to_reg(
return ((clock->filter & 0xf) << 12) | (clock->clock & 0x03ff); return ((clock->filter & 0xf) << 12) | (clock->clock & 0x03ff);
} }
static inline void pmcmsptwi_reg_to_clock(
u32 reg, struct pmcmsptwi_clock *clock)
{
clock->filter = (reg >> 12) & 0xf;
clock->clock = reg & 0x03ff;
}
static inline u32 pmcmsptwi_cfg_to_reg(const struct pmcmsptwi_cfg *cfg) static inline u32 pmcmsptwi_cfg_to_reg(const struct pmcmsptwi_cfg *cfg)
{ {
return ((cfg->arbf & 0xf) << 12) | return ((cfg->arbf & 0xf) << 12) |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment