diff options
Diffstat (limited to 'drivers/mmc/host/sdhci-s3c.c')
-rw-r--r-- | drivers/mmc/host/sdhci-s3c.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c index 82b7a7ad4217..82a8de148a8f 100644 --- a/drivers/mmc/host/sdhci-s3c.c +++ b/drivers/mmc/host/sdhci-s3c.c | |||
@@ -441,7 +441,7 @@ static void sdhci_s3c_setup_card_detect_gpio(struct sdhci_s3c *sc) | |||
441 | } | 441 | } |
442 | 442 | ||
443 | #ifdef CONFIG_OF | 443 | #ifdef CONFIG_OF |
444 | static int __devinit sdhci_s3c_parse_dt(struct device *dev, | 444 | static int sdhci_s3c_parse_dt(struct device *dev, |
445 | struct sdhci_host *host, struct s3c_sdhci_platdata *pdata) | 445 | struct sdhci_host *host, struct s3c_sdhci_platdata *pdata) |
446 | { | 446 | { |
447 | struct device_node *node = dev->of_node; | 447 | struct device_node *node = dev->of_node; |
@@ -532,7 +532,7 @@ static int __devinit sdhci_s3c_parse_dt(struct device *dev, | |||
532 | return 0; | 532 | return 0; |
533 | } | 533 | } |
534 | #else | 534 | #else |
535 | static int __devinit sdhci_s3c_parse_dt(struct device *dev, | 535 | static int sdhci_s3c_parse_dt(struct device *dev, |
536 | struct sdhci_host *host, struct s3c_sdhci_platdata *pdata) | 536 | struct sdhci_host *host, struct s3c_sdhci_platdata *pdata) |
537 | { | 537 | { |
538 | return -EINVAL; | 538 | return -EINVAL; |
@@ -555,7 +555,7 @@ static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data( | |||
555 | platform_get_device_id(pdev)->driver_data; | 555 | platform_get_device_id(pdev)->driver_data; |
556 | } | 556 | } |
557 | 557 | ||
558 | static int __devinit sdhci_s3c_probe(struct platform_device *pdev) | 558 | static int sdhci_s3c_probe(struct platform_device *pdev) |
559 | { | 559 | { |
560 | struct s3c_sdhci_platdata *pdata; | 560 | struct s3c_sdhci_platdata *pdata; |
561 | struct sdhci_s3c_drv_data *drv_data; | 561 | struct sdhci_s3c_drv_data *drv_data; |
@@ -781,7 +781,7 @@ static int __devinit sdhci_s3c_probe(struct platform_device *pdev) | |||
781 | return ret; | 781 | return ret; |
782 | } | 782 | } |
783 | 783 | ||
784 | static int __devexit sdhci_s3c_remove(struct platform_device *pdev) | 784 | static int sdhci_s3c_remove(struct platform_device *pdev) |
785 | { | 785 | { |
786 | struct sdhci_host *host = platform_get_drvdata(pdev); | 786 | struct sdhci_host *host = platform_get_drvdata(pdev); |
787 | struct sdhci_s3c *sc = sdhci_priv(host); | 787 | struct sdhci_s3c *sc = sdhci_priv(host); |
@@ -911,7 +911,7 @@ MODULE_DEVICE_TABLE(of, sdhci_s3c_dt_match); | |||
911 | 911 | ||
912 | static struct platform_driver sdhci_s3c_driver = { | 912 | static struct platform_driver sdhci_s3c_driver = { |
913 | .probe = sdhci_s3c_probe, | 913 | .probe = sdhci_s3c_probe, |
914 | .remove = __devexit_p(sdhci_s3c_remove), | 914 | .remove = sdhci_s3c_remove, |
915 | .id_table = sdhci_s3c_driver_ids, | 915 | .id_table = sdhci_s3c_driver_ids, |
916 | .driver = { | 916 | .driver = { |
917 | .owner = THIS_MODULE, | 917 | .owner = THIS_MODULE, |