mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 23:00:53 +07:00
w1: ds2405: use module_w1_family to simplify the code
module_w1_family() makes the code simpler by eliminating boilerplate code. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
45003a1e25
commit
90beaf6422
@ -224,15 +224,4 @@ static struct w1_family w1_family_ds2405 = {
|
||||
.fops = &w1_ds2405_fops
|
||||
};
|
||||
|
||||
static int __init w1_ds2405_init(void)
|
||||
{
|
||||
return w1_register_family(&w1_family_ds2405);
|
||||
}
|
||||
|
||||
static void __exit w1_ds2405_fini(void)
|
||||
{
|
||||
w1_unregister_family(&w1_family_ds2405);
|
||||
}
|
||||
|
||||
module_init(w1_ds2405_init);
|
||||
module_exit(w1_ds2405_fini);
|
||||
module_w1_family(w1_family_ds2405);
|
||||
|
Loading…
Reference in New Issue
Block a user