diff --git a/arch/x86/linuxbios_table.c b/arch/x86/linuxbios_table.c index ccd99a5d3a..9fb8be9766 100644 --- a/arch/x86/linuxbios_table.c +++ b/arch/x86/linuxbios_table.c @@ -1,7 +1,6 @@ /* * table management code for Linux BIOS tables * - * * Copyright (C) 2002 Eric Biederman, Linux NetworX * * This program is free software; you can redistribute it and/or modify @@ -181,7 +180,7 @@ void lb_memory_range(struct lb_memory *mem, u32 type, u64 start, u64 size) { int entries; - printk(BIOS_SPEW-2, "%s: start 0x%lx size 0x%lx\n", __func__, (u32)start, (u32)size); + printk(BIOS_INFO, "%s: start 0x%lx size 0x%lx\n", __func__, (u32)start, (u32)size); entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]); mem->map[entries].start = pack_lb64(start); mem->map[entries].size = pack_lb64(size); diff --git a/include/console/loglevel.h b/include/console/loglevel.h index 1862d538cd..f90b3ef13b 100644 --- a/include/console/loglevel.h +++ b/include/console/loglevel.h @@ -1,19 +1,19 @@ /* - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ -*/ #ifndef LOGLEVEL_H #define LOGLEVEL_H