From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752653AbbJMJYm (ORCPT ); Tue, 13 Oct 2015 05:24:42 -0400 Received: from mail-wi0-f182.google.com ([209.85.212.182]:37974 "EHLO mail-wi0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752087AbbJMJYl (ORCPT ); Tue, 13 Oct 2015 05:24:41 -0400 Date: Tue, 13 Oct 2015 10:24:37 +0100 From: Lee Jones To: Charles Keepax Cc: patches@opensource.wolfsonmicro.com, linux-kernel@vger.kernel.org, rf@opensource.wolfsonmicro.com, sameo@linux.intel.com Subject: Re: [PATCH v2 3/6] mfd: arizona: Downgrade type mismatch messages to dev_warn Message-ID: <20151013092437.GO32409@x1> References: <1443788955-7523-1-git-send-email-ckeepax@opensource.wolfsonmicro.com> <1443788955-7523-3-git-send-email-ckeepax@opensource.wolfsonmicro.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1443788955-7523-3-git-send-email-ckeepax@opensource.wolfsonmicro.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 02 Oct 2015, Charles Keepax wrote: > From: Richard Fitzgerald > > If the declared codec type doesn't match the detected type > we issue a log message but carry on registering the device, > so a dev_warn() is appropriate rather than a dev_err() > > Signed-off-by: Richard Fitzgerald > Acked-by: Lee Jones > Signed-off-by: Charles Keepax > --- > drivers/mfd/arizona-core.c | 16 ++++++++-------- > 1 files changed, 8 insertions(+), 8 deletions(-) Applied, thanks. > diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c > index e32d0d3..c3f88e5 100644 > --- a/drivers/mfd/arizona-core.c > +++ b/drivers/mfd/arizona-core.c > @@ -1130,8 +1130,8 @@ int arizona_dev_init(struct arizona *arizona) > case 0x5102: > type_name = "WM5102"; > if (arizona->type != WM5102) { > - dev_err(arizona->dev, "WM5102 registered as %d\n", > - arizona->type); > + dev_warn(arizona->dev, "WM5102 registered as %d\n", > + arizona->type); > arizona->type = WM5102; > } > apply_patch = wm5102_patch; > @@ -1149,8 +1149,8 @@ int arizona_dev_init(struct arizona *arizona) > break; > default: > type_name = "WM5110"; > - dev_err(arizona->dev, "WM5110 registered as %d\n", > - arizona->type); > + dev_warn(arizona->dev, "WM5110 registered as %d\n", > + arizona->type); > arizona->type = WM5110; > break; > } > @@ -1161,8 +1161,8 @@ int arizona_dev_init(struct arizona *arizona) > case 0x8997: > type_name = "WM8997"; > if (arizona->type != WM8997) { > - dev_err(arizona->dev, "WM8997 registered as %d\n", > - arizona->type); > + dev_warn(arizona->dev, "WM8997 registered as %d\n", > + arizona->type); > arizona->type = WM8997; > } > apply_patch = wm8997_patch; > @@ -1181,8 +1181,8 @@ int arizona_dev_init(struct arizona *arizona) > > default: > type_name = "WM8998"; > - dev_err(arizona->dev, "WM8998 registered as %d\n", > - arizona->type); > + dev_warn(arizona->dev, "WM8998 registered as %d\n", > + arizona->type); > arizona->type = WM8998; > } > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog