Author: blueswirl Date: 2008-12-20 21:23:55 +0100 (Sat, 20 Dec 2008) New Revision: 300
Modified: openbios-devel/drivers/pci.c openbios-devel/fs/grubfs/grubfs_fs.c Log: remove useless printk
This patch removes useless printk()
Signed-off-by: Laurent Vivier Laurent@lvivier.info
Modified: openbios-devel/drivers/pci.c =================================================================== --- openbios-devel/drivers/pci.c 2008-12-20 20:23:16 UTC (rev 299) +++ openbios-devel/drivers/pci.c 2008-12-20 20:23:55 UTC (rev 300) @@ -1444,7 +1444,6 @@ } pci_config_write32(addr, config_addr, reloc | omask); config->regions[reg] = reloc; -printk("region %08x size %08x\n", config->regions[reg], config->sizes[reg]); } }
Modified: openbios-devel/fs/grubfs/grubfs_fs.c =================================================================== --- openbios-devel/fs/grubfs/grubfs_fs.c 2008-12-20 20:23:16 UTC (rev 299) +++ openbios-devel/fs/grubfs/grubfs_fs.c 2008-12-20 20:23:55 UTC (rev 300) @@ -267,7 +267,9 @@ return 0; } } +#ifdef CONFIG_DEBUG_FS printk("Unknown filesystem type\n"); +#endif return -1; }