* [PATCH] spi-orion: remove uneeded spi_info
@ 2012-06-03 20:10 Michael Walle
2012-06-03 20:54 ` Jason Cooper
2012-06-03 21:04 ` Jason Cooper
0 siblings, 2 replies; 4+ messages in thread
From: Michael Walle @ 2012-06-03 20:10 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: open list:SPI SUBSYSTEM, Michael Walle, open list
This was formerly used to store the tclk value. Remove it.
Signed-off-by: Michael Walle <michael@walle.cc>
---
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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] spi-orion: remove uneeded spi_info
2012-06-03 20:10 [PATCH] spi-orion: remove uneeded spi_info Michael Walle
@ 2012-06-03 20:54 ` Jason Cooper
2012-06-03 21:04 ` Jason Cooper
1 sibling, 0 replies; 4+ messages in thread
From: Jason Cooper @ 2012-06-03 20:54 UTC (permalink / raw)
To: Michael Walle; +Cc: linux-arm-kernel, open list:SPI SUBSYSTEM, open list
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 <michael@walle.cc>
Acked-by: Jason Cooper <jason@lakedaemon.net>
> ---
> 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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] spi-orion: remove uneeded spi_info
2012-06-03 20:10 [PATCH] spi-orion: remove uneeded spi_info Michael Walle
2012-06-03 20:54 ` Jason Cooper
@ 2012-06-03 21:04 ` Jason Cooper
[not found] ` <20120603210424.GM14756-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
1 sibling, 1 reply; 4+ messages in thread
From: Jason Cooper @ 2012-06-03 21:04 UTC (permalink / raw)
To: Michael Walle; +Cc: linux-arm-kernel, open list:SPI SUBSYSTEM, open list
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 <michael@walle.cc>
> ---
> 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);
It's not relevant to this patch, but later in the patch series, you
initialize this device via devicetree. Did you add the clock node? Is
there a dependency for this series that I missed?
thx,
Jason.
> 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
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-06-03 21:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-03 20:10 [PATCH] spi-orion: remove uneeded spi_info Michael Walle
2012-06-03 20:54 ` Jason Cooper
2012-06-03 21:04 ` Jason Cooper
[not found] ` <20120603210424.GM14756-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
2012-06-03 21:51 ` Michael Walle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).