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 <bhanusreemahesh@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bhanusree Pola 2019-02-26 06:06:27 +05:30 committed by Greg Kroah-Hartman
parent e1167d7b45
commit c4d8416c85
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}