From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754963Ab2FCUyp (ORCPT ); Sun, 3 Jun 2012 16:54:45 -0400 Received: from mho-01-ewr.mailhop.org ([204.13.248.71]:51001 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754817Ab2FCUyZ (ORCPT ); Sun, 3 Jun 2012 16:54:25 -0400 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 108.17.144.84 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18VtX6OCq9XW/uHMPHgIX923HN6L3BURJE= Date: Sun, 3 Jun 2012 16:54:19 -0400 From: Jason Cooper To: Michael Walle Cc: linux-arm-kernel@lists.infradead.org, "open list:SPI SUBSYSTEM" , open list Subject: Re: [PATCH] spi-orion: remove uneeded spi_info Message-ID: <20120603205419.GK14756@titan.lakedaemon.net> References: <1338754215-16022-1-git-send-email-michael@walle.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1338754215-16022-1-git-send-email-michael@walle.cc> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jun 03, 2012 at 10:10:14PM +0200, Michael Walle wrote: > This was formerly used to store the tclk value. Remove it. > > Signed-off-by: Michael Walle Acked-by: Jason Cooper > --- > drivers/spi/spi-orion.c | 5 ----- > 1 files changed, 0 insertions(+), 5 deletions(-) > > diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c > index dfd04e9..2760450 100644 > --- a/drivers/spi/spi-orion.c > +++ b/drivers/spi/spi-orion.c > @@ -45,7 +45,6 @@ struct orion_spi { > void __iomem *base; > unsigned int max_speed; > unsigned int min_speed; > - struct orion_spi_info *spi_info; > struct clk *clk; > }; > > @@ -450,12 +449,9 @@ static int __init orion_spi_probe(struct platform_device *pdev) > struct spi_master *master; > struct orion_spi *spi; > struct resource *r; > - struct orion_spi_info *spi_info; > unsigned long tclk_hz; > int status = 0; > > - spi_info = pdev->dev.platform_data; > - > master = spi_alloc_master(&pdev->dev, sizeof *spi); > if (master == NULL) { > dev_dbg(&pdev->dev, "master allocation failed\n"); > @@ -476,7 +472,6 @@ static int __init orion_spi_probe(struct platform_device *pdev) > > spi = spi_master_get_devdata(master); > spi->master = master; > - spi->spi_info = spi_info; > > spi->clk = clk_get(&pdev->dev, NULL); > if (IS_ERR(spi->clk)) { > -- > 1.7.2.5 > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel