|
@@ -13,7 +13,6 @@
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_gpio.h>
|
|
|
#include <linux/mmc/slot-gpio.h>
|
|
|
-#include <linux/pinctrl/consumer.h>
|
|
|
#include "sdhci-pltfm.h"
|
|
|
|
|
|
struct sdhci_sirf_priv {
|
|
@@ -46,15 +45,8 @@ static int sdhci_sirf_probe(struct platform_device *pdev)
|
|
|
struct sdhci_host *host;
|
|
|
struct sdhci_pltfm_host *pltfm_host;
|
|
|
struct sdhci_sirf_priv *priv;
|
|
|
- struct pinctrl *pinctrl;
|
|
|
int ret;
|
|
|
|
|
|
- pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
|
|
|
- if (IS_ERR(pinctrl)) {
|
|
|
- dev_err(&pdev->dev, "unable to get pinmux");
|
|
|
- return PTR_ERR(pinctrl);
|
|
|
- }
|
|
|
-
|
|
|
priv = devm_kzalloc(&pdev->dev, sizeof(struct sdhci_sirf_priv),
|
|
|
GFP_KERNEL);
|
|
|
if (!priv) {
|