Commit 6d9f3d12 authored by Philipp Hortmann's avatar Philipp Hortmann Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: Convert macro MACvEnableProtectMD to function



Convert macro to static function. Multiline macros are not liked by
kernel community. Rename variable dwOrgValue to reg_value to avoid
CamelCase which is not accepted by checkpatch.pl. Change variable
declaration to u32 as this improves readability.

Signed-off-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/f3a5ec5352346f1dc4bf3afbee25973fdb47d7e4.1659892670.git.philipp.g.hortmann@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 05e778f0
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -216,6 +216,15 @@ static void vt6655_mac_dma_ctl(void __iomem *iobase, u8 reg_index)
		iowrite32(DMACTL_RUN, iobase + reg_index);
}

static void MACvEnableProtectMD(void __iomem *iobase)
{
	u32 reg_value;

	reg_value = ioread32(iobase + MAC_REG_ENCFG);
	reg_value = reg_value | ENCFG_PROTECTMD;
	iowrite32(reg_value, iobase + MAC_REG_ENCFG);
}

/*
 * Initialisation of MAC & BBP registers
 */
+0 −8
Original line number Diff line number Diff line
@@ -543,14 +543,6 @@
#define MACvSelectPage1(iobase)				\
	iowrite8(1, iobase + MAC_REG_PAGE1SEL)

#define MACvEnableProtectMD(iobase)					\
do {									\
	unsigned long dwOrgValue;					\
	dwOrgValue = ioread32(iobase + MAC_REG_ENCFG);			\
	dwOrgValue = dwOrgValue | ENCFG_PROTECTMD;			\
	iowrite32((u32)dwOrgValue, iobase + MAC_REG_ENCFG);		\
} while (0)

#define MACvDisableProtectMD(iobase)					\
do {									\
	unsigned long dwOrgValue;					\