From: Christian Lütke-Stetzkamp Date: Sat, 16 Jun 2018 14:14:55 +0000 (+0200) Subject: staging: mt7621-mmc: Remove unused macro msdc_retry X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6a1636fa1146bbeb86e1731d815f3528e8dec1b1;p=openwrt%2Fstaging%2Fblogic.git staging: mt7621-mmc: Remove unused macro msdc_retry The macro msdc_retry is never used, so remove it. Signed-off-by: Christian Lütke-Stetzkamp Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt7621-mmc/sd.c index 01a925ae662e..0e94bb0d5927 100644 --- a/drivers/staging/mt7621-mmc/sd.c +++ b/drivers/staging/mt7621-mmc/sd.c @@ -149,19 +149,6 @@ static int msdc_rsp[] = { #define msdc_dma_on() sdr_clr_bits(MSDC_CFG, MSDC_CFG_PIO) -#define msdc_retry(expr, retry, cnt) \ - do { \ - int backup = cnt; \ - while (retry) { \ - if (!(expr)) \ - break; \ - if (cnt-- == 0) { \ - retry--; mdelay(1); cnt = backup; \ - } \ - } \ - WARN_ON(retry == 0); \ - } while (0) - static void msdc_reset_hw(struct msdc_host *host) { void __iomem *base = host->base;