Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 365679
b: refs/heads/master
c: 5073cba
h: refs/heads/master
i:
  365677: 431fb81
  365675: b850726
  365671: 7feed24
  365663: d2b542c
v: v3
  • Loading branch information
Jingoo Han authored and Linus Torvalds committed Apr 30, 2013
1 parent aee160d commit 4aad786
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: e3c70624e664f6390c699201a93b8528b818f24f
refs/heads/master: 5073cba64fd0acb2555aad8f33ff4c64f68c15db
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-imxdi.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ static void dryice_work(struct work_struct *work)
/*
* probe for dryice rtc device
*/
static int dryice_rtc_probe(struct platform_device *pdev)
static int __init dryice_rtc_probe(struct platform_device *pdev)
{
struct resource *res;
struct imxdi_dev *imxdi;
Expand Down Expand Up @@ -479,7 +479,7 @@ static int dryice_rtc_probe(struct platform_device *pdev)
return rc;
}

static int dryice_rtc_remove(struct platform_device *pdev)
static int __exit dryice_rtc_remove(struct platform_device *pdev)
{
struct imxdi_dev *imxdi = platform_get_drvdata(pdev);

Expand Down Expand Up @@ -510,7 +510,7 @@ static struct platform_driver dryice_rtc_driver = {
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(dryice_dt_ids),
},
.remove = dryice_rtc_remove,
.remove = __exit_p(dryice_rtc_remove),
};

static int __init dryice_rtc_init(void)
Expand Down

0 comments on commit 4aad786

Please sign in to comment.