From: Andy Shevchenko <ext-andriy.shevchenko@xxxxxxxxx> Remove useless macroses. They were doing nothing, so it's clear to just get rid of them. Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@xxxxxxxxx> --- arch/arm/plat-omap/include/dspbridge/memdefs.h | 3 --- drivers/dsp/bridge/wmd/tiomap_io.c | 5 ++--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/memdefs.h b/arch/arm/plat-omap/include/dspbridge/memdefs.h index e70225e..2e44f5c 100644 --- a/arch/arm/plat-omap/include/dspbridge/memdefs.h +++ b/arch/arm/plat-omap/include/dspbridge/memdefs.h @@ -34,7 +34,4 @@ #define MEM_GETVIRTUALSEGID 0x20000000 #define MEM_MASKVIRTUALSEGID (MEM_SETVIRTUALSEGID | MEM_GETVIRTUALSEGID) -#define TO_VIRTUAL_UNCACHED(x) x -#define INTREG_TO_VIRTUAL_UNCACHED(x) x - #endif /* MEMDEFS_ */ diff --git a/drivers/dsp/bridge/wmd/tiomap_io.c b/drivers/dsp/bridge/wmd/tiomap_io.c index f60b8db..4e85efd 100644 --- a/drivers/dsp/bridge/wmd/tiomap_io.c +++ b/drivers/dsp/bridge/wmd/tiomap_io.c @@ -366,9 +366,8 @@ DSP_STATUS WriteExtDspData(struct WMD_DEV_CONTEXT *pDevContext, dwExtProgVirtMem); pDevContext->dwDspExtBaseAddr = - (u32)MEM_LinearAddress((void *) - TO_VIRTUAL_UNCACHED(dwExtProgVirtMem), ulExtEnd - - ulExtBase); + (u32)MEM_LinearAddress((void *)dwExtProgVirtMem, + ulExtEnd - ulExtBase); dwBaseAddr += pDevContext->dwDspExtBaseAddr; /* This dwDspExtBaseAddr will get cleared only when * the board is stopped. */ -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html