nb/intel/gm45: Fix some errors/warnings given by checkpatch
This results in raminit_receive_enable_calibration.c producing no errors or warnings with checkpatch. The issues fixed are: ERROR: that open brace { should be on the previous line WARNING: Prefer 'unsigned int' to bare use of 'unsigned' Tested by compiling after making the changes. Change-Id: I8d2f4f1fe2f17aa44c0a7090c178eee418defe78 Signed-off-by: Tristan Corrick <tristancorrick86@gmail.com> Reviewed-on: https://review.coreboot.org/19651 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
ca39df8195
commit
267d086a08
|
@ -209,11 +209,14 @@ static void receive_enable_calibration(const timings_t *const timings,
|
||||||
/* F */{ { 0, 0 }, { 3, 3 }, { 6, 6 }, { 5, 5 } },
|
/* F */{ { 0, 0 }, { 3, 3 }, { 6, 6 }, { 5, 5 } },
|
||||||
};
|
};
|
||||||
|
|
||||||
const int cardF[] =
|
const int cardF[] = {
|
||||||
{ dimms[0].card_type == 0xf, dimms[0].card_type == 0xf };
|
dimms[0].card_type == 0xf,
|
||||||
const unsigned t_bound =
|
dimms[0].card_type == 0xf,
|
||||||
|
};
|
||||||
|
|
||||||
|
const unsigned int t_bound =
|
||||||
(timings->mem_clock == MEM_CLOCK_1067MT) ? 9 : 12;
|
(timings->mem_clock == MEM_CLOCK_1067MT) ? 9 : 12;
|
||||||
const unsigned p_bound =
|
const unsigned int p_bound =
|
||||||
(timings->mem_clock == MEM_CLOCK_1067MT) ? 8 : 1;
|
(timings->mem_clock == MEM_CLOCK_1067MT) ? 8 : 1;
|
||||||
|
|
||||||
rec_timing_t rec_timings[2][4] = {
|
rec_timing_t rec_timings[2][4] = {
|
||||||
|
|
Loading…
Reference in New Issue