mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
mmc: meson-mx-sdio: Fix misuse of GENMASK macro
commit665e985c2fupstream. Arguments are supposed to be ordered high then low. Signed-off-by: Joe Perches <joe@perches.com> Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> Fixes:ed80a13bb4("mmc: meson-mx-sdio: Add a driver for the Amlogic Meson8 and Meson8b SoCs") Cc: stable@vger.kernel.org Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
29841b5c6a
commit
7e3efb6550
@@ -76,7 +76,7 @@
|
||||
#define MESON_MX_SDIO_IRQC_IF_CONFIG_MASK GENMASK(7, 6)
|
||||
#define MESON_MX_SDIO_IRQC_FORCE_DATA_CLK BIT(8)
|
||||
#define MESON_MX_SDIO_IRQC_FORCE_DATA_CMD BIT(9)
|
||||
#define MESON_MX_SDIO_IRQC_FORCE_DATA_DAT_MASK GENMASK(10, 13)
|
||||
#define MESON_MX_SDIO_IRQC_FORCE_DATA_DAT_MASK GENMASK(13, 10)
|
||||
#define MESON_MX_SDIO_IRQC_SOFT_RESET BIT(15)
|
||||
#define MESON_MX_SDIO_IRQC_FORCE_HALT BIT(30)
|
||||
#define MESON_MX_SDIO_IRQC_HALT_HOLE BIT(31)
|
||||
|
||||
Reference in New Issue
Block a user