From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933494AbbCDR0s (ORCPT ); Wed, 4 Mar 2015 12:26:48 -0500 Received: from mail-qc0-f177.google.com ([209.85.216.177]:33328 "EHLO mail-qc0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933219AbbCDRY5 (ORCPT ); Wed, 4 Mar 2015 12:24:57 -0500 From: Peter Hurley To: Greg Kroah-Hartman , Grant Likely , Rob Herring Cc: linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org, Peter Hurley Subject: [PATCH -next 08/12] serial: earlycon: Id the earlycon "driver" in banner Date: Wed, 4 Mar 2015 12:24:27 -0500 Message-Id: <1425489871-22415-9-git-send-email-peter@hurleysoftware.com> X-Mailer: git-send-email 2.3.1 In-Reply-To: <1425489871-22415-1-git-send-email-peter@hurleysoftware.com> References: <1425489871-22415-1-git-send-email-peter@hurleysoftware.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Output the earlycon "driver" from the just-parsed console ::name and ::index fields. Signed-off-by: Peter Hurley --- drivers/tty/serial/earlycon.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/tty/serial/earlycon.c b/drivers/tty/serial/earlycon.c index 522ceb8..3c8fe4e 100644 --- a/drivers/tty/serial/earlycon.c +++ b/drivers/tty/serial/earlycon.c @@ -85,12 +85,14 @@ static void __init earlycon_init(struct earlycon_device *device, earlycon->data = &early_console_dev; if (port->iotype == UPIO_MEM || port->iotype == UPIO_MEM32) - pr_info("Early serial console at MMIO%s 0x%llx (options '%s')\n", + pr_info("%s%d at MMIO%s 0x%llx (options '%s')\n", + earlycon->name, earlycon->index, (port->iotype == UPIO_MEM32) ? "32" : "", (unsigned long long)port->mapbase, device->options); else - pr_info("Early serial console at I/O port 0x%lx (options '%s')\n", + pr_info("%s%d at I/O port 0x%lx (options '%s')\n", + earlycon->name, earlycon->index, port->iobase, device->options); } -- 2.3.1