From: Colin Ian King <[email protected]> Trival fix, the dev_emerg message is missing a \n so add it.
Signed-off-by: Colin Ian King <[email protected]> --- drivers/char/agp/intel-agp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/char/agp/intel-agp.c b/drivers/char/agp/intel-agp.c index 0a21dae..03f40e4 100644 --- a/drivers/char/agp/intel-agp.c +++ b/drivers/char/agp/intel-agp.c @@ -152,7 +152,7 @@ static int intel_815_configure(void) /* the Intel 815 chipset spec. says that bits 29-31 in the * ATTBASE register are reserved -> try not to write them */ if (agp_bridge->gatt_bus_addr & INTEL_815_ATTBASE_MASK) { - dev_emerg(&agp_bridge->dev->dev, "gatt bus addr too high"); + dev_emerg(&agp_bridge->dev->dev, "gatt bus addr too high\n"); return -EINVAL; } -- 2.9.3

