Commit 31e0a455 authored by Jean-Baptiste Jouband's avatar Jean-Baptiste Jouband Committed by Mauro Carvalho Chehab

media: staging: media: ipu3: Change 'unsigned long int' to 'unsigned long'

This patch fixes the checkpatch.pl warning:

WARNING: Prefer 'unsigned long' over 'unsigned long int' as the int is
unnecessary
Signed-off-by: default avatarJean-Baptiste Jouband <jj.jouband@gmail.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 1283b3b8
...@@ -130,7 +130,7 @@ static u32 *imgu_mmu_alloc_page_table(u32 pteval) ...@@ -130,7 +130,7 @@ static u32 *imgu_mmu_alloc_page_table(u32 pteval)
for (pte = 0; pte < IPU3_PT_PTES; pte++) for (pte = 0; pte < IPU3_PT_PTES; pte++)
pt[pte] = pteval; pt[pte] = pteval;
set_memory_uc((unsigned long int)pt, IPU3_PT_ORDER); set_memory_uc((unsigned long)pt, IPU3_PT_ORDER);
return pt; return pt;
} }
...@@ -141,7 +141,7 @@ static u32 *imgu_mmu_alloc_page_table(u32 pteval) ...@@ -141,7 +141,7 @@ static u32 *imgu_mmu_alloc_page_table(u32 pteval)
*/ */
static void imgu_mmu_free_page_table(u32 *pt) static void imgu_mmu_free_page_table(u32 *pt)
{ {
set_memory_wb((unsigned long int)pt, IPU3_PT_ORDER); set_memory_wb((unsigned long)pt, IPU3_PT_ORDER);
free_page((unsigned long)pt); free_page((unsigned long)pt);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment