OSDN Git Service

media: ccs-pll: Switch from standard integer types to kernel ones
authorSakari Ailus <sakari.ailus@linux.intel.com>
Thu, 26 Nov 2020 20:01:54 +0000 (21:01 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 12 Jan 2021 16:55:28 +0000 (17:55 +0100)
commit8a75e8dcd2ef409e2bc7bf3141549cd636b4696b
tree0d3acf7a90d6f0cf66fbe3141f65af19819987fe
parent81499d338995fa288464c585f49211cfaa6ffdce
media: ccs-pll: Switch from standard integer types to kernel ones

The preferred integer types in the kernel are the Linux specific ones,
switch from standard C types to u32 and alike.

The patch has been produced with the following Coccinelle spatch, with few
alignment adjustments:

@@
typedef uint32_t;
typedef u32;
@@
- uint32_t
+ u32

@@
typedef uint16_t;
typedef u16;
@@
- uint16_t
+ u16

@@
typedef uint8_t;
typedef u8;
@@
- uint8_t
+ u8

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/i2c/ccs-pll.c
drivers/media/i2c/ccs-pll.h