Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752596AbbG2His (ORCPT ); Wed, 29 Jul 2015 03:38:48 -0400 Received: from mail-wi0-f175.google.com ([209.85.212.175]:36020 "EHLO mail-wi0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751639AbbG2Hiq (ORCPT ); Wed, 29 Jul 2015 03:38:46 -0400 Date: Wed, 29 Jul 2015 08:38:41 +0100 From: Lee Jones To: Aaron Sierra Cc: Matt Fleming , Wim Van Sebroeck , linux-kernel@vger.kernel.org, linux-watchdog@vger.kernel.org, Mika Westerberg , Andy Shevchenko , Jean Delvare , Wolfram Sang , Matt Fleming , Peter Tyser , Samuel Ortiz Subject: Re: [PATCH 1/5] iTCO_wdt: Expose watchdog properties using platform data Message-ID: <20150729073841.GF2284@x1> References: <1438004292-16382-1-git-send-email-matt@codeblueprint.co.uk> <1438004292-16382-2-git-send-email-matt@codeblueprint.co.uk> <20150728094643.GT14943@x1> <20150728110717.GH2492@codeblueprint.co.uk> <20150728113721.GU14943@x1> <72454140.319490.1438109162683.JavaMail.zimbra@xes-inc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <72454140.319490.1438109162683.JavaMail.zimbra@xes-inc.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 Content-Length: 2147 Lines: 55 On Tue, 28 Jul 2015, Aaron Sierra wrote: > > > > > @@ -933,7 +956,7 @@ gpe0_done: > > > > > lpc_chipset_info[priv->chipset].use_gpio = ret; > > > > > lpc_ich_enable_gpio_space(dev); > > > > > > > > > > - lpc_ich_finalize_cell(dev, &lpc_ich_cells[LPC_GPIO]); > > > > > + lpc_ich_finalize_gpio_cell(dev); > > > > > ret = mfd_add_devices(&dev->dev, PLATFORM_DEVID_AUTO, > > > > > &lpc_ich_cells[LPC_GPIO], 1, NULL, 0, NULL); > > > > > > > > > > @@ -1007,7 +1030,10 @@ static int lpc_ich_init_wdt(struct pci_dev *dev) > > > > > res->end = base_addr + ACPIBASE_PMC_END; > > > > > } > > > > > > > > > > - lpc_ich_finalize_cell(dev, &lpc_ich_cells[LPC_WDT]); > > > > > + ret = lpc_ich_finalize_wdt_cell(dev); > > > > > + if (ret) > > > > > + goto wdt_done; > > > > > + > > > > > ret = mfd_add_devices(&dev->dev, PLATFORM_DEVID_AUTO, > > > > > &lpc_ich_cells[LPC_WDT], 1, NULL, 0, NULL); > > > > > > > > Why do you have an mfd_add_devices() call for each device? > > > > > > Good question. This call has been present since March 2012 when support > > > was first added for iTCO_wdt in commit 887c8ec7219f ("watchdog: Convert > > > iTCO_wdt driver to mfd model"). > > > > > > There's no good reason that I can see. Aaron? > > I chose to call mfd_add_devices() in each device init function > because I thought it was the easiest way to avoid registering an > incomplete/invalid MFD cell should an error occur during init. > > That way device registration wouldn't be an all-or-nothing affair. > > Doesn't mfd_add_devices() bail out after the first unsuccessful > mfd to platform device translation? Right, as it should. Under what circumstance would an error occur and you'd wish to carry on registering devices? -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/