From: Bhanusree Pola Date: Tue, 26 Feb 2019 00:36:27 +0000 (+0530) Subject: Staging: mt7621_dma: Prefer unsigned int over just unsigned X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c4d8416c85bf66f1e95f2eab556e858b811037e7;p=linux.git Staging: mt7621_dma: Prefer unsigned int over just unsigned Replace 'unsigned' with 'unsigned int' to be specific with data type. Issue found with checkpatch.pl Signed-off-by: Bhanusree Pola Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/mt7621-dma/mtk-hsdma.c b/drivers/staging/mt7621-dma/mtk-hsdma.c index d67a2504adb1f..4426c0e386f8f 100644 --- a/drivers/staging/mt7621-dma/mtk-hsdma.c +++ b/drivers/staging/mt7621-dma/mtk-hsdma.c @@ -191,7 +191,7 @@ static inline u32 mtk_hsdma_read(struct mtk_hsdam_engine *hsdma, u32 reg) } static inline void mtk_hsdma_write(struct mtk_hsdam_engine *hsdma, - unsigned reg, u32 val) + unsigned int reg, u32 val) { writel(val, hsdma->base + reg); }