mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-07 06:59:25 +08:00
mmc: renesas_sdhi: use plain numbers for end_flags
Linux *_bit accessors take plain bit numbers, no need for BIT().
Fixes: c330601c9c ("mmc: renesas_sdhi: take DMA end interrupts into account")
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20221122080554.4468-1-wsa+renesas@sang-engineering.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
committed by
Ulf Hansson
parent
4e268fed8b
commit
ffbace4378
@@ -57,8 +57,8 @@ struct renesas_sdhi_of_data_with_quirks {
|
||||
};
|
||||
|
||||
/* We want both end_flags to be set before we mark DMA as finished */
|
||||
#define SDHI_DMA_END_FLAG_DMA BIT(0)
|
||||
#define SDHI_DMA_END_FLAG_ACCESS BIT(1)
|
||||
#define SDHI_DMA_END_FLAG_DMA 0
|
||||
#define SDHI_DMA_END_FLAG_ACCESS 1
|
||||
|
||||
struct renesas_sdhi_dma {
|
||||
unsigned long end_flags;
|
||||
|
||||
Reference in New Issue
Block a user