spi: pxa2xx-pci: Refactor CE4100 to use ->setup()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 25 Feb 2022 17:23:40 +0000 (19:23 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 28 Feb 2022 12:10:17 +0000 (12:10 +0000)
Refactor CE4100 handling code to use ->setup() instead of spreading
potentially confusing conditional.

Besides that, it will allow to refactor further to avoid intermediate
storage for the used configuration parameters.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220225172350.69797-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pxa2xx-pci.c

index 6d60972..bd20379 100644 (file)
@@ -30,7 +30,7 @@ enum {
 struct pxa_spi_info {
        enum pxa_ssp_type type;
        int port_id;
-       int num_chipselect;
+       unsigned int num_chipselect;
        unsigned long max_clk_rate;
 
        /* DMA channel request parameters */
@@ -114,6 +114,14 @@ static int lpss_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
        return 0;
 }
 
+static int ce4100_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
+{
+       c->num_chipselect = dev->devfn;
+       c->max_clk_rate = 3686400;
+
+       return 0;
+}
+
 static int mrfld_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
 {
        struct dw_dma_slave *tx, *rx;
@@ -163,8 +171,7 @@ static struct pxa_spi_info spi_info_configs[] = {
        [PORT_CE4100] = {
                .type = PXA25x_SSP,
                .port_id =  -1,
-               .num_chipselect = -1,
-               .max_clk_rate = 3686400,
+               .setup = ce4100_spi_setup,
        },
        [PORT_BYT] = {
                .type = LPSS_BYT_SSP,
@@ -248,7 +255,7 @@ static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
        }
 
        memset(&spi_pdata, 0, sizeof(spi_pdata));
-       spi_pdata.num_chipselect = (c->num_chipselect > 0) ? c->num_chipselect : dev->devfn;
+       spi_pdata.num_chipselect = c->num_chipselect;
        spi_pdata.dma_filter = c->dma_filter;
        spi_pdata.tx_param = c->tx_param;
        spi_pdata.rx_param = c->rx_param;