Commit c4d8416c authored by Bhanusree Pola's avatar Bhanusree Pola Committed by Greg Kroah-Hartman
Browse files

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: default avatarBhanusree Pola <bhanusreemahesh@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e1167d7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}