spi/orion: remove uneeded spi_info
[deliverable/linux.git] / drivers / spi / spi-orion.c
index 74312a862ba80b235f731cf6fbe867b0f96ffdff..9b0caddce5037b5b347615969ae9c6bd22eaf8f7 100644 (file)
@@ -46,7 +46,6 @@ struct orion_spi {
        void __iomem            *base;
        unsigned int            max_speed;
        unsigned int            min_speed;
-       struct orion_spi_info   *spi_info;
        struct clk              *clk;
 };
 
@@ -451,14 +450,11 @@ 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;
        const u32 *iprop;
        int size;
 
-       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");
@@ -485,7 +481,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)) {
This page took 0.030539 seconds and 5 git commands to generate.