From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935679AbdAKKw5 (ORCPT ); Wed, 11 Jan 2017 05:52:57 -0500 Received: from bh-25.webhostbox.net ([208.91.199.152]:41350 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1763494AbdAKKwy (ORCPT ); Wed, 11 Jan 2017 05:52:54 -0500 Subject: Re: [PATCH 56/62] watchdog: tangox_wdt: Convert to use device managed functions To: Marc Gonzalez References: <1484091325-9199-1-git-send-email-linux@roeck-us.net> <1484100561-17638-1-git-send-email-linux@roeck-us.net> <1484100561-17638-5-git-send-email-linux@roeck-us.net> Cc: Wim Van Sebroeck , linux-watchdog@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Mans Rullgard , Thibaud Cornic From: Guenter Roeck Message-ID: <94c4d5c0-f639-eab1-6706-335977690e88@roeck-us.net> Date: Wed, 11 Jan 2017 02:52:51 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated_sender: linux@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: linux@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: linux@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/11/2017 01:07 AM, Marc Gonzalez wrote: >> @@ -134,12 +134,15 @@ static int tangox_wdt_probe(struct platform_device *pdev) >> err = clk_prepare_enable(dev->clk); >> if (err) >> return err; >> + err = devm_add_action_or_reset(&pdev->dev, >> + (void(*)(void *))clk_disable_unprepare, >> + dev->clk); >> + if (err) >> + return err; > > Hello Guenter, > > I would rather avoid the function pointer cast. > How about defining an auxiliary function for the cleanup action? > > clk_disable_unprepare() is static inline, so gcc will have to > define an auxiliary function either way. What do you think? > Not really. It would just make it more complicated to replace the call with devm_clk_prepare_enable(), should it ever find its way into the light of day. Guenter