remove useless printk

This patch removes useless printk()

Signed-off-by: Laurent Vivier <Laurent@lvivier.info>


git-svn-id: svn://coreboot.org/openbios/openbios-devel@300 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Laurent Vivier
2008-12-20 20:23:55 +00:00
committed by Blue Swirl
parent 0ba8f749e0
commit cd90eca8ce
2 changed files with 2 additions and 1 deletions

View File

@@ -1444,7 +1444,6 @@ ob_pci_configure(pci_addr addr, pci_config_t *config, unsigned long *mem_base,
} }
pci_config_write32(addr, config_addr, reloc | omask); pci_config_write32(addr, config_addr, reloc | omask);
config->regions[reg] = reloc; config->regions[reg] = reloc;
printk("region %08x size %08x\n", config->regions[reg], config->sizes[reg]);
} }
} }

View File

@@ -267,7 +267,9 @@ fs_grubfs_open( int fd, fs_ops_t *fs )
return 0; return 0;
} }
} }
#ifdef CONFIG_DEBUG_FS
printk("Unknown filesystem type\n"); printk("Unknown filesystem type\n");
#endif
return -1; return -1;
} }