mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-07 05:57:54 +07:00
Staging: bcm2835-camera: Prefer kernel types
Fix the warning issued by checkpatch Prefer kernel type 'u32' over 'uint32_t'. Along with that include a blank line after a declaration to maintain Linux kernel coding style. Signed-off-by: Madhumitha Prabakaran <madhumithabiw@gmail.com> Acked-by: Stefan Wahren <stefan.wahren@i2se.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3fb58b8572
commit
37d13c28eb
@ -52,7 +52,8 @@ static const s64 ev_bias_qmenu[] = {
|
||||
static const s64 iso_qmenu[] = {
|
||||
0, 100000, 200000, 400000, 800000,
|
||||
};
|
||||
static const uint32_t iso_values[] = {
|
||||
|
||||
static const u32 iso_values[] = {
|
||||
0, 100, 200, 400, 800,
|
||||
};
|
||||
|
||||
|
@ -309,7 +309,7 @@ struct mmal_msg_port_parameter_set {
|
||||
u32 port_handle; /* port */
|
||||
u32 id; /* Parameter ID */
|
||||
u32 size; /* Parameter size */
|
||||
uint32_t value[MMAL_WORKER_PORT_PARAMETER_SPACE];
|
||||
u32 value[MMAL_WORKER_PORT_PARAMETER_SPACE];
|
||||
};
|
||||
|
||||
struct mmal_msg_port_parameter_set_reply {
|
||||
@ -331,7 +331,7 @@ struct mmal_msg_port_parameter_get_reply {
|
||||
u32 status; /* Status of mmal_port_parameter_get call */
|
||||
u32 id; /* Parameter ID */
|
||||
u32 size; /* Parameter size */
|
||||
uint32_t value[MMAL_WORKER_PORT_PARAMETER_SPACE];
|
||||
u32 value[MMAL_WORKER_PORT_PARAMETER_SPACE];
|
||||
};
|
||||
|
||||
/* event messages */
|
||||
|
Loading…
Reference in New Issue
Block a user