Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348185
b: refs/heads/master
c: 4eab7a9
h: refs/heads/master
i:
  348183: 6279fca
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 3, 2013
1 parent b9aad8f commit c977efe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 59a609a97a59a10b0d5e46e9491c856efb57065d
refs/heads/master: 4eab7a9eb2def0b4b0f36397a6cfca6eadba7302
6 changes: 3 additions & 3 deletions trunk/drivers/thermal/exynos_thermal.c
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
return (struct exynos_tmu_platform_data *)
platform_get_device_id(pdev)->driver_data;
}
static int __devinit exynos_tmu_probe(struct platform_device *pdev)
static int exynos_tmu_probe(struct platform_device *pdev)
{
struct exynos_tmu_data *data;
struct exynos_tmu_platform_data *pdata = pdev->dev.platform_data;
Expand Down Expand Up @@ -937,7 +937,7 @@ static int __devinit exynos_tmu_probe(struct platform_device *pdev)
return ret;
}

static int __devexit exynos_tmu_remove(struct platform_device *pdev)
static int exynos_tmu_remove(struct platform_device *pdev)
{
struct exynos_tmu_data *data = platform_get_drvdata(pdev);

Expand Down Expand Up @@ -985,7 +985,7 @@ static struct platform_driver exynos_tmu_driver = {
.of_match_table = exynos_tmu_match,
},
.probe = exynos_tmu_probe,
.remove = __devexit_p(exynos_tmu_remove),
.remove = exynos_tmu_remove,
.id_table = exynos_tmu_driver_ids,
};

Expand Down

0 comments on commit c977efe

Please sign in to comment.