diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-02-08 18:46:02 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-10 16:16:17 +0400 |
commit | d655bbbd5beead3643f6769adaa1f30bcddc3fe2 (patch) | |
tree | 20e96237f995d5d6b7eebc8991b723394f9f79b9 /drivers/spi/spi-omap-100k.c | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) | |
download | linux-d655bbbd5beead3643f6769adaa1f30bcddc3fe2.tar.xz |
spi: omap-100k: Remove unused MOD_REG_BIT macro
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-omap-100k.c')
-rw-r--r-- | drivers/spi/spi-omap-100k.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/spi/spi-omap-100k.c b/drivers/spi/spi-omap-100k.c index 0d32054bfc0d..657184a4644c 100644 --- a/drivers/spi/spi-omap-100k.c +++ b/drivers/spi/spi-omap-100k.c @@ -99,13 +99,6 @@ struct omap1_spi100k_cs { int word_len; }; -#define MOD_REG_BIT(val, mask, set) do { \ - if (set) \ - val |= mask; \ - else \ - val &= ~mask; \ -} while (0) - static void spi100k_enable_clock(struct spi_master *master) { unsigned int val; |