Commit 81a22c33 authored by Zhen Lei's avatar Zhen Lei Committed by Lee Jones
Browse files

mfd: t7l66xb: Use DEFINE_RES_MEM() and DEFINE_RES_IRQ() to simplify code



No functional change.

Signed-off-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent a75f4d1f
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -37,16 +37,8 @@ enum {
};

static const struct resource t7l66xb_mmc_resources[] = {
	{
		.start = 0x800,
		.end	= 0x9ff,
		.flags = IORESOURCE_MEM,
	},
	{
		.start = IRQ_T7L66XB_MMC,
		.end	= IRQ_T7L66XB_MMC,
		.flags = IORESOURCE_IRQ,
	},
	DEFINE_RES_MEM(0x800, 0x200),
	DEFINE_RES_IRQ(IRQ_T7L66XB_MMC)
};

#define SCR_REVID	0x08		/* b Revision ID	*/