Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348213
b: refs/heads/master
c: 4e608e4
h: refs/heads/master
i:
  348211: 0f5e7ee
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 3, 2013
1 parent fd40690 commit ecf9674
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d34d6517eadc91dc7915a2095c52dc8cde94db83
refs/heads/master: 4e608e4ed9fea873c60749bdba2fbbbfb234bee0
2 changes: 1 addition & 1 deletion trunk/drivers/mmc/host/dw_mmc-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static struct pci_driver dw_mci_pci_driver = {
.name = "dw_mmc_pci",
.id_table = dw_mci_pci_id,
.probe = dw_mci_pci_probe,
.remove = __devexit_p(dw_mci_pci_remove),
.remove = dw_mci_pci_remove,
.driver = {
.pm = &dw_mci_pci_pmops
},
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/mmc/host/dw_mmc-pltfm.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ MODULE_DEVICE_TABLE(of, dw_mci_pltfm_match);

static struct platform_driver dw_mci_pltfm_driver = {
.probe = dw_mci_pltfm_probe,
.remove = __devexit_p(dw_mci_pltfm_remove),
.remove = dw_mci_pltfm_remove,
.driver = {
.name = "dw_mmc",
.of_match_table = of_match_ptr(dw_mci_pltfm_match),
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/mmc/host/sdhci-acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid)
return NULL;
}

static int __devinit sdhci_acpi_probe(struct platform_device *pdev)
static int sdhci_acpi_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
acpi_handle handle = ACPI_HANDLE(dev);
Expand Down Expand Up @@ -214,7 +214,7 @@ static int __devinit sdhci_acpi_probe(struct platform_device *pdev)
return err;
}

static int __devexit sdhci_acpi_remove(struct platform_device *pdev)
static int sdhci_acpi_remove(struct platform_device *pdev)
{
struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
struct device *dev = &pdev->dev;
Expand Down Expand Up @@ -302,7 +302,7 @@ static struct platform_driver sdhci_acpi_driver = {
.pm = &sdhci_acpi_pm_ops,
},
.probe = sdhci_acpi_probe,
.remove = __devexit_p(sdhci_acpi_remove),
.remove = sdhci_acpi_remove,
};

module_platform_driver(sdhci_acpi_driver);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/mmc/host/wmt-sdmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ static struct of_device_id wmt_mci_dt_ids[] = {
{ /* Sentinel */ },
};

static int __devinit wmt_mci_probe(struct platform_device *pdev)
static int wmt_mci_probe(struct platform_device *pdev)
{
struct mmc_host *mmc;
struct wmt_mci_priv *priv;
Expand Down Expand Up @@ -892,7 +892,7 @@ static int __devinit wmt_mci_probe(struct platform_device *pdev)
return ret;
}

static int __devexit wmt_mci_remove(struct platform_device *pdev)
static int wmt_mci_remove(struct platform_device *pdev)
{
struct mmc_host *mmc;
struct wmt_mci_priv *priv;
Expand Down

0 comments on commit ecf9674

Please sign in to comment.