src/soc: Remove unnecessary whitespace before "\n" and "\t"
Change-Id: I89bc8b26f2dba4770aea14b8bbc7e657355e8c59 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16325 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
committed by
Martin Roth
parent
eb131f30a3
commit
03b040b95f
@ -1349,7 +1349,7 @@ void ddr_init2(void)
|
|||||||
|
|
||||||
if(pwrctli0==3)
|
if(pwrctli0==3)
|
||||||
{
|
{
|
||||||
printk(BIOS_INFO, "\n PRE_SRX call \n");
|
printk(BIOS_INFO, "\n PRE_SRX call\n");
|
||||||
PRE_SRX();
|
PRE_SRX();
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
@ -1613,7 +1613,7 @@ void ddr_init2(void)
|
|||||||
reg32_write((unsigned int *)DDR_DENALI_CTL_56, 0x0a050505);
|
reg32_write((unsigned int *)DDR_DENALI_CTL_56, 0x0a050505);
|
||||||
|
|
||||||
__udelay(200);
|
__udelay(200);
|
||||||
printk(BIOS_INFO, "\nDDR self refresh exit \n");
|
printk(BIOS_INFO, "\nDDR self refresh exit\n");
|
||||||
|
|
||||||
// Assert DFI request from PHY to mask any interaction with MEMC
|
// Assert DFI request from PHY to mask any interaction with MEMC
|
||||||
reg32_write((unsigned int *)DDR_PHY_CONTROL_REGS_DFI_CNTRL, 0xe0);
|
reg32_write((unsigned int *)DDR_PHY_CONTROL_REGS_DFI_CNTRL, 0xe0);
|
||||||
|
@ -281,7 +281,7 @@ static void print_gpi_status(const struct gpi_status *sts)
|
|||||||
|
|
||||||
abs_bit = bit_set;
|
abs_bit = bit_set;
|
||||||
abs_bit += group * GPIO_MAX_NUM_PER_GROUP;
|
abs_bit += group * GPIO_MAX_NUM_PER_GROUP;
|
||||||
printk(BIOS_DEBUG, "%s %d \n",comm->grp_name,
|
printk(BIOS_DEBUG, "%s %d\n",comm->grp_name,
|
||||||
abs_bit);
|
abs_bit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -272,7 +272,7 @@ static void sc_pirq_init(device_t dev)
|
|||||||
|
|
||||||
/* Set up the PIRQ PIC routing based on static config. */
|
/* Set up the PIRQ PIC routing based on static config. */
|
||||||
printk(BIOS_SPEW, "Start writing IRQ assignments\n"
|
printk(BIOS_SPEW, "Start writing IRQ assignments\n"
|
||||||
"PIRQ\tA \tB \tC \tD \tE \tF \tG \tH\n"
|
"PIRQ\tA\tB\tC\tD\tE\tF\tG\tH\n"
|
||||||
"IRQ ");
|
"IRQ ");
|
||||||
for (i = 0; i < NUM_PIRQS; i++) {
|
for (i = 0; i < NUM_PIRQS; i++) {
|
||||||
write8(pr_base + i, ir->pic[i]);
|
write8(pr_base + i, ir->pic[i]);
|
||||||
|
@ -212,7 +212,7 @@ static void do_jedec_init(struct sys_info *sysinfo)
|
|||||||
if (rank == 0)
|
if (rank == 0)
|
||||||
program_dll_config(sysinfo);
|
program_dll_config(sysinfo);
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Setting up RAM \n");
|
printk(BIOS_DEBUG, "Setting up RAM\n");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Wait 200us
|
* Wait 200us
|
||||||
|
@ -769,7 +769,7 @@ void tx_delay_for_wrleveling(u32 channel,
|
|||||||
index = i / DQS_BIT_NUMBER;
|
index = i / DQS_BIT_NUMBER;
|
||||||
|
|
||||||
if (i % DQS_BIT_NUMBER == 0)
|
if (i % DQS_BIT_NUMBER == 0)
|
||||||
dramc_dbg_msg("DQS%d: %d \n", index,
|
dramc_dbg_msg("DQS%d: %d\n", index,
|
||||||
wrlevel_dqs_dly[channel][index]);
|
wrlevel_dqs_dly[channel][index]);
|
||||||
|
|
||||||
if (max_dqsdly_byte[index] <= wrlevel_dqs_dly[channel][index]) {
|
if (max_dqsdly_byte[index] <= wrlevel_dqs_dly[channel][index]) {
|
||||||
|
@ -127,7 +127,7 @@ s32 pwrap_wacs2(u32 write, u16 adr, u16 wdata, u16 *rdata, u32 init_check)
|
|||||||
/* Prevent someone to used pwrap before pwrap init */
|
/* Prevent someone to used pwrap before pwrap init */
|
||||||
if (((reg_rdata >> RDATA_INIT_DONE_SHIFT) &
|
if (((reg_rdata >> RDATA_INIT_DONE_SHIFT) &
|
||||||
RDATA_INIT_DONE_MASK) != WACS_INIT_DONE) {
|
RDATA_INIT_DONE_MASK) != WACS_INIT_DONE) {
|
||||||
pwrap_err("initialization isn't finished \n");
|
pwrap_err("initialization isn't finished\n");
|
||||||
return E_PWR_NOT_INIT_DONE;
|
return E_PWR_NOT_INIT_DONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user