staging: ralink-gdma: Change unsigned to unsigned int

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

Signed-off-by: Bharath Vedartham <linux.bhar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bharath Vedartham 2019-03-24 15:18:03 +05:30 committed by Greg Kroah-Hartman
parent 506bce7335
commit 4da99b90ce

View File

@ -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, 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); writel(val, dma_dev->base + reg);
} }