From patchwork Wed Oct 5 22:27:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Agner X-Patchwork-Id: 678646 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3sq9Qn4lrcz9sD5 for ; Thu, 6 Oct 2016 09:28:01 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=agner.ch header.i=@agner.ch header.b=pVmiND/A; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1794DA76DA; Thu, 6 Oct 2016 00:28:00 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Zs_T_wLhon-B; Thu, 6 Oct 2016 00:27:59 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AEA7FA76FD; Thu, 6 Oct 2016 00:27:59 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DF9E7A76C5 for ; Thu, 6 Oct 2016 00:27:48 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FsTBZXawTXW0 for ; Thu, 6 Oct 2016 00:27:48 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail.kmu-office.ch (mail.kmu-office.ch [178.209.48.109]) by theia.denx.de (Postfix) with ESMTPS id 2F7ECA76DA for ; Thu, 6 Oct 2016 00:27:43 +0200 (CEST) Received: from trochilidae.toradex.int (75-146-58-181-Washington.hfc.comcastbusiness.net [75.146.58.181]) by mail.kmu-office.ch (Postfix) with ESMTPSA id 6A6485C2F11; Thu, 6 Oct 2016 00:21:45 +0200 (CEST) From: Stefan Agner To: u-boot@lists.denx.de, Stefano Babic Date: Wed, 5 Oct 2016 15:27:04 -0700 Message-Id: <20161005222713.29241-3-stefan@agner.ch> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20161005222713.29241-1-stefan@agner.ch> References: <20161005222713.29241-1-stefan@agner.ch> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=agner.ch; s=dkim; t=1475706107; bh=0HQKBp0JPZwlvFCUpbI9t57BxxrYaqxc94dLfg1LJ2g=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=pVmiND/AhR4Yze0ZPQdBd7aQWrGnT9y81oSXZDVZRiI1jXnBktAaMTGUEUGrA6Fpz+1hfB9zudgXF+Dk5GngY5AsiWuUz6Ohl8ERyST75WEqwQklVcLK/o2sPls33IMN5xSFX3epC6xlE9n5JzWXG4fMWpuNCimvbxWWAs92dCk= Cc: Stefan Agner , Marcel Ziswiler , Max Krummenacher Subject: [U-Boot] [PATCH v3 02/10] pinctrl: imx: do not announce driver initialization X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Stefan Agner It is not usual that drivers announce when they have been initialized. use dev_dbg to announce device initialization. Signed-off-by: Stefan Agner Reviewed-by: Simon Glass --- drivers/pinctrl/nxp/pinctrl-imx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/nxp/pinctrl-imx.c b/drivers/pinctrl/nxp/pinctrl-imx.c index 40b0616..949d0f3 100644 --- a/drivers/pinctrl/nxp/pinctrl-imx.c +++ b/drivers/pinctrl/nxp/pinctrl-imx.c @@ -222,7 +222,7 @@ int imx_pinctrl_probe(struct udevice *dev, return -ENOMEM; } - dev_info(dev, "initialized IMX pinctrl driver\n"); + dev_dbg(dev, "initialized IMX pinctrl driver\n"); return 0; }