Searched hist:"8 a75e8dcd2ef409e2bc7bf3141549cd636b4696b" (Results 1 – 2 of 2) sorted by relevance
/openbmc/linux/drivers/media/i2c/ |
H A D | ccs-pll.h | diff 8a75e8dcd2ef409e2bc7bf3141549cd636b4696b Thu Nov 26 14:01:54 CST 2020 Sakari Ailus <sakari.ailus@linux.intel.com> 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>
|
H A D | ccs-pll.c | diff 8a75e8dcd2ef409e2bc7bf3141549cd636b4696b Thu Nov 26 14:01:54 CST 2020 Sakari Ailus <sakari.ailus@linux.intel.com> 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>
|