Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964941AbbDIJeN (ORCPT ); Thu, 9 Apr 2015 05:34:13 -0400 Received: from mail-lb0-f176.google.com ([209.85.217.176]:33179 "EHLO mail-lb0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934057AbbDIJeG (ORCPT ); Thu, 9 Apr 2015 05:34:06 -0400 Message-ID: <5526478A.6060707@cogentembedded.com> Date: Thu, 09 Apr 2015 12:34:02 +0300 From: Sergei Shtylyov User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Brian Norris , Tejun Heo CC: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-ide@vger.kernel.org, kernel@stlinux.com, Srinivas Kandagatla , Maxime Coquelin , Patrice Chotard Subject: Re: [PATCH] ata: ahci_st: fixup layering violations / drvdata errors References: <1428519599-31885-1-git-send-email-computersforpeace@gmail.com> In-Reply-To: <1428519599-31885-1-git-send-email-computersforpeace@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1839 Lines: 51 Hello. On 4/8/2015 9:59 PM, Brian Norris wrote: > When working on another SATA driver that uses libahci_platform, I > noticed an error in this driver; it tries to the the driver data for its > device, while libata also thinks it can set the driver data. See: > ahci_platform_init_host() > -> ata_host_alloc_pinfo() > -> ata_host_alloc() > -> dev_set_drvdata() > So instead of sticking the IP-specific platform data into drvdata, let's > use the plat_data variable that is reserved for this use. > Signed-off-by: Brian Norris > Cc: Srinivas Kandagatla > Cc: Maxime Coquelin > Cc: Patrice Chotard > --- > This is ONLY compile tested; I don't have hardware to run. This looks like it > could have ramifications on suspend/resume support, and hot device removal > (e.g., sysfs unbind), so it might qualify as -stable, if someone can test it > drivers/ata/ahci_st.c | 25 ++++++++++++++----------- > 1 file changed, 14 insertions(+), 11 deletions(-) > diff --git a/drivers/ata/ahci_st.c b/drivers/ata/ahci_st.c > index bc971af262e7..2bd2375c2ab1 100644 > --- a/drivers/ata/ahci_st.c > +++ b/drivers/ata/ahci_st.c [...] > @@ -107,7 +108,9 @@ static void st_ahci_host_stop(struct ata_host *host) > > static int st_ahci_probe_resets(struct platform_device *pdev) > { > - struct st_ahci_drv_data *drv_data = platform_get_drvdata(pdev); > + struct ata_host *host = dev_get_drvdata(&pdev->dev); Why not just platform_get_drvdata()? [...] MBR, Sergei -- 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/