diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2020-11-26 21:01:54 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-01-12 17:55:28 +0100 |
commit | 8a75e8dcd2ef409e2bc7bf3141549cd636b4696b (patch) | |
tree | 0d3acf7a90d6f0cf66fbe3141f65af19819987fe /drivers/media/i2c/ccs/ccs-core.c | |
parent | 81499d338995fa288464c585f49211cfaa6ffdce (diff) |
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>
Diffstat (limited to 'drivers/media/i2c/ccs/ccs-core.c')
0 files changed, 0 insertions, 0 deletions