mirror of
https://github.com/joel16/android_kernel_sony_msm8994_rework.git
synced 2025-01-01 01:03:58 +00:00
trivial: add __init/__exit macros to DAC960.c
Trivial patch which adds the __init and __exit macros to the module_init / module_exit functions from drivers/block/DAC960.c Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
4b26d50b33
commit
3c36543aea
@ -7210,7 +7210,7 @@ static struct pci_driver DAC960_pci_driver = {
|
||||
.remove = DAC960_Remove,
|
||||
};
|
||||
|
||||
static int DAC960_init_module(void)
|
||||
static int __init DAC960_init_module(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@ -7222,7 +7222,7 @@ static int DAC960_init_module(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void DAC960_cleanup_module(void)
|
||||
static void __exit DAC960_cleanup_module(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user