Commit 4da99b90 authored by Bharath Vedartham's avatar Bharath Vedartham Committed by Greg Kroah-Hartman
Browse files

staging: ralink-gdma: Change unsigned to unsigned int



This fixes the checkpatch.pl warning: "Prefer unsigned to unsigned int"

Signed-off-by: default avatarBharath Vedartham <linux.bhar@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 506bce73
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ static inline uint32_t gdma_dma_read(struct gdma_dma_dev *dma_dev,
}

static inline void gdma_dma_write(struct gdma_dma_dev *dma_dev,
				  unsigned reg, uint32_t val)
				  unsigned int reg, uint32_t val)
{
	writel(val, dma_dev->base + reg);
}