mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
This patch fixes debug printing.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> Thanks, Myles git-svn-id: svn://coreboot.org/repository/coreboot-v3@1038 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
89d507d73b
commit
6e882880f2
1 changed files with 2 additions and 2 deletions
|
@ -42,12 +42,12 @@ static void ide_init(struct device *dev)
|
|||
if (conf->ide1_enable) {
|
||||
/* Enable secondary ide interface */
|
||||
word |= (1<<0);
|
||||
printk(BIOS_DEBUG, "IDE1 ");
|
||||
printk(BIOS_DEBUG, "%s: IDE1 \n", __func__);
|
||||
}
|
||||
if (conf->ide0_enable) {
|
||||
/* Enable primary ide interface */
|
||||
word |= (1<<1);
|
||||
printk(BIOS_DEBUG, "IDE0 ");
|
||||
printk(BIOS_DEBUG, "%s: IDE0 \n", __func__);
|
||||
}
|
||||
|
||||
word |= (1<<12);
|
||||
|
|
Loading…
Add table
Reference in a new issue