Commit ac394266 authored by Vatsala Narang's avatar Vatsala Narang Committed by Greg Kroah-Hartman

staging: media: zoran: Use unsigned int instead of unsigned

Replace 'unsigned' with 'unsigned int' to get rid of checkpatch warning
Signed-off-by: default avatarVatsala Narang <vatsalanarang@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1ec119f0
...@@ -34,12 +34,12 @@ extern void GPIO(struct zoran *zr, ...@@ -34,12 +34,12 @@ extern void GPIO(struct zoran *zr,
/* codec (or actually: guest bus) access */ /* codec (or actually: guest bus) access */
extern int post_office_wait(struct zoran *zr); extern int post_office_wait(struct zoran *zr);
extern int post_office_write(struct zoran *zr, extern int post_office_write(struct zoran *zr,
unsigned guest, unsigned int guest,
unsigned reg, unsigned int reg,
unsigned value); unsigned int value);
extern int post_office_read(struct zoran *zr, extern int post_office_read(struct zoran *zr,
unsigned guest, unsigned int guest,
unsigned reg); unsigned int reg);
extern void detect_guest_activity(struct zoran *zr); extern void detect_guest_activity(struct zoran *zr);
......
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