mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-17 02:07:42 +07:00
rtc: rtc-imxdi: add __init/__exit annotation
When platform_driver_probe() is used, bind/unbind via sysfs is disabled. Thus, __init/__exit annotations can be added to probe()/remove(). Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e3c70624e6
commit
5073cba64f
@ -369,7 +369,7 @@ static void dryice_work(struct work_struct *work)
|
|||||||
/*
|
/*
|
||||||
* probe for dryice rtc device
|
* 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 resource *res;
|
||||||
struct imxdi_dev *imxdi;
|
struct imxdi_dev *imxdi;
|
||||||
@ -479,7 +479,7 @@ static int dryice_rtc_probe(struct platform_device *pdev)
|
|||||||
return rc;
|
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);
|
struct imxdi_dev *imxdi = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
@ -510,7 +510,7 @@ static struct platform_driver dryice_rtc_driver = {
|
|||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.of_match_table = of_match_ptr(dryice_dt_ids),
|
.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)
|
static int __init dryice_rtc_init(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user