Messages in this thread Patch in this message |  | | | From | Davide Ciminaghi <> | | Subject | [PATCH 04/14] sta2x11-mfd : platform probe: don't mind about gpio platform data | | Date | Mon, 11 Jun 2012 02:57:49 +0200 |
| |
From: Davide Ciminaghi <ciminaghi@gnudd.com>
The gpio platform driver will take care of its platform data, let's not do any checks here.
Signed-off-by: Davide Ciminaghi <ciminaghi@gnudd.com> --- drivers/mfd/sta2x11-mfd.c | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/drivers/mfd/sta2x11-mfd.c b/drivers/mfd/sta2x11-mfd.c index e004c59..744bdd0 100644 --- a/drivers/mfd/sta2x11-mfd.c +++ b/drivers/mfd/sta2x11-mfd.c @@ -465,7 +465,6 @@ static int __devinit sta2x11_mfd_probe(struct pci_dev *pdev, { int err, i; struct sta2x11_mfd_setup_data *setup_data; - struct sta2x11_gpio_pdata *gpio_data; dev_info(&pdev->dev, "%s\n", __func__); @@ -483,16 +482,6 @@ static int __devinit sta2x11_mfd_probe(struct pci_dev *pdev, &mfd_setup_data[STA2X11_MFD0] : &mfd_setup_data[STA2X11_MFD1]; - /* Read gpio config data as pci device's platform data */ - gpio_data = dev_get_platdata(&pdev->dev); - if (!gpio_data) - dev_warn(&pdev->dev, "no gpio configuration\n"); - - dev_dbg(&pdev->dev, "%s, gpio_data = %p (%p)\n", __func__, - gpio_data, &gpio_data); - dev_dbg(&pdev->dev, "%s, pdev = %p (%p)\n", __func__, - pdev, &pdev); - /* platform data is the pci device for all of them */ sta2x11_mfd_setup(pdev, setup_data); -- 1.7.9.1
|  |