From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 264E0C282CE for ; Fri, 12 Apr 2019 13:54:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ED9CC2084D for ; Fri, 12 Apr 2019 13:54:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727020AbfDLNyl (ORCPT ); Fri, 12 Apr 2019 09:54:41 -0400 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:33400 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726702AbfDLNyl (ORCPT ); Fri, 12 Apr 2019 09:54:41 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 93E09374; Fri, 12 Apr 2019 06:54:40 -0700 (PDT) Received: from [10.1.196.75] (e110467-lin.cambridge.arm.com [10.1.196.75]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id E5F313F557; Fri, 12 Apr 2019 06:54:38 -0700 (PDT) Subject: Re: [PATCH V5 3/3] hwmon: pwm-fan: Add RPM support via external interrupt To: Guenter Roeck , Stefan Wahren Cc: Kamil Debski , Bartlomiej Zolnierkiewicz , Jean Delvare , Rob Herring , Mark Rutland , linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org References: <1554989411-23666-1-git-send-email-stefan.wahren@i2se.com> <1554989411-23666-4-git-send-email-stefan.wahren@i2se.com> <20190411165742.GA29395@roeck-us.net> <019733e8-6b12-f5c1-e251-fd7eabe2891b@i2se.com> <77c56129-d3e7-1518-9d1d-a15a20540269@arm.com> From: Robin Murphy Message-ID: <19616839-f78f-a15f-c7b7-7ef9e7817140@arm.com> Date: Fri, 12 Apr 2019 14:54:37 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/04/2019 14:50, Guenter Roeck wrote: > On 4/12/19 4:50 AM, Robin Murphy wrote: >> On 12/04/2019 12:07, Stefan Wahren wrote: >>> On 11.04.19 18:57, Guenter Roeck wrote: >>>> On Thu, Apr 11, 2019 at 03:30:11PM +0200, Stefan Wahren wrote: >>>>> -ATTRIBUTE_GROUPS(pwm_fan); >>>>> +static umode_t pwm_fan_attrs_visible(struct kobject *kobj, struct >>>>> attribute *a, >>>>> +                     int n) >>>>> +{ >>>>> +    struct device *dev = container_of(kobj, struct device, kobj); >>>>> +    struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); >>>>> +    struct device_attribute *devattr; >>>>> + >>>>> +    /* Hide fan_input in case no interrupt is available  */ >>>>> +    devattr = container_of(a, struct device_attribute, attr); >>>> Field day for static analyzers - devattr is no longer used. >>>> No need to resend. I'll let the series rest for a couple of days >>>> and then apply to hwmon-next (after removing devattr) unless there are >>>> additional comments. >>>> >>> Thank you >> >> FWIW you can have a >> >> Reviewed-by: Robin Murphy >> >> for the whole series. The only minor comment that springs to mind >> isn't actually specific to this patch, so is probably best made as >> the follow-up below. >> >> Robin. >> > > Any chance you can send the patch below as separate patch ? I track patches > using patchwork, and attachments don't show up there. Sure, can do - would you like an explicit R-b on #1 and #2 here for patchwork to pick up as well? Robin. > > Thanks, > Guenter > >> ----->8----- >> From: Robin Murphy >> Subject: [PATCH] hwmon: pwm-fan: Report probe errors consistently >> >> Printing the error code for a failure provides a head-start for >> debugging, since it's often sufficient to pinpoint the origin of the >> failure. We already do this for some probe-failure messages, so let's >> make the rest of them consistent. >> >> Signed-off-by: Robin Murphy >> --- >>   drivers/hwmon/pwm-fan.c | 13 ++++++++----- >>   1 file changed, 8 insertions(+), 5 deletions(-) >> >> diff --git a/drivers/hwmon/pwm-fan.c b/drivers/hwmon/pwm-fan.c >> index 8c4c5eefd4ca..556db4bef743 100644 >> --- a/drivers/hwmon/pwm-fan.c >> +++ b/drivers/hwmon/pwm-fan.c >> @@ -330,7 +330,7 @@ static int pwm_fan_probe(struct platform_device >> *pdev) >> >>       ret = pwm_apply_state(ctx->pwm, &state); >>       if (ret) { >> -        dev_err(&pdev->dev, "Failed to configure PWM\n"); >> +        dev_err(&pdev->dev, "Failed to configure PWM: %d\n", ret); >>           goto err_reg_disable; >>       } >> >> @@ -348,7 +348,8 @@ static int pwm_fan_probe(struct platform_device >> *pdev) >>           ret = devm_request_irq(&pdev->dev, ctx->irq, pulse_handler, 0, >>                          pdev->name, ctx); >>           if (ret) { >> -            dev_err(&pdev->dev, "Can't get interrupt working.\n"); >> +            dev_err(&pdev->dev, >> +                "Failed to request interrupt: %d\n", ret); >>               goto err_pwm_disable; >>           } >>           ctx->sample_start = ktime_get(); >> @@ -358,8 +359,9 @@ static int pwm_fan_probe(struct platform_device >> *pdev) >>       hwmon = devm_hwmon_device_register_with_groups(&pdev->dev, >> "pwmfan", >>                                  ctx, pwm_fan_groups); >>       if (IS_ERR(hwmon)) { >> -        dev_err(&pdev->dev, "Failed to register hwmon device\n"); >>           ret = PTR_ERR(hwmon); >> +        dev_err(&pdev->dev, >> +            "Failed to register hwmon device: %d\n", ret); >>           goto err_del_timer; >>       } >> >> @@ -373,9 +375,10 @@ static int pwm_fan_probe(struct platform_device >> *pdev) >>                                 "pwm-fan", ctx, >>                                 &pwm_fan_cooling_ops); >>           if (IS_ERR(cdev)) { >> -            dev_err(&pdev->dev, >> -                "Failed to register pwm-fan as cooling device"); >>               ret = PTR_ERR(cdev); >> +            dev_err(&pdev->dev, >> +                "Failed to register pwm-fan as cooling device: %d\n", >> +                ret); >>               goto err_del_timer; >>           } >>           ctx->cdev = cdev; >> >