Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: greybus: audio_codec.c: Prefer kernel type 'u32' over 'uint32_t'

Fix the following errors found by checkpatch.pl:
CHECK: Prefer kernel type 'u32' over 'uint32_t'

Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Kamal Heib and committed by
Greg Kroah-Hartman
6236015f 6a4dd600

+3 -3
+3 -3
drivers/staging/greybus/audio_codec.c
··· 47 47 int module_state, ret = 0; 48 48 u16 data_cport, i2s_port, cportid; 49 49 u8 sig_bits, channels; 50 - uint32_t format, rate; 50 + u32 format, rate; 51 51 struct gbaudio_data_connection *data; 52 52 struct gbaudio_stream_params *params; 53 53 ··· 182 182 int module_state, ret = 0; 183 183 u16 data_cport, i2s_port, cportid; 184 184 u8 sig_bits, channels; 185 - uint32_t format, rate; 185 + u32 format, rate; 186 186 struct gbaudio_data_connection *data; 187 187 struct gbaudio_stream_params *params; 188 188 ··· 412 412 { 413 413 int ret; 414 414 u8 sig_bits, channels; 415 - uint32_t format, rate; 415 + u32 format, rate; 416 416 struct gbaudio_module_info *module; 417 417 struct gbaudio_data_connection *data; 418 418 struct gb_bundle *bundle;