|
@@ -817,7 +817,7 @@ typedef int (proc_writefunc) (struct file * file, const char __user * buffer,
|
|
unsigned long count, void *data);
|
|
unsigned long count, void *data);
|
|
|
|
|
|
static int
|
|
static int
|
|
-__init asus_proc_add(char *name, proc_writefunc * writefunc,
|
|
|
|
|
|
+asus_proc_add(char *name, proc_writefunc * writefunc,
|
|
proc_readfunc * readfunc, mode_t mode,
|
|
proc_readfunc * readfunc, mode_t mode,
|
|
struct acpi_device *device)
|
|
struct acpi_device *device)
|
|
{
|
|
{
|
|
@@ -836,7 +836,7 @@ __init asus_proc_add(char *name, proc_writefunc * writefunc,
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-static int __init asus_hotk_add_fs(struct acpi_device *device)
|
|
|
|
|
|
+static int asus_hotk_add_fs(struct acpi_device *device)
|
|
{
|
|
{
|
|
struct proc_dir_entry *proc;
|
|
struct proc_dir_entry *proc;
|
|
mode_t mode;
|
|
mode_t mode;
|
|
@@ -954,7 +954,7 @@ static void asus_hotk_notify(acpi_handle handle, u32 event, void *data)
|
|
* This function is used to initialize the hotk with right values. In this
|
|
* This function is used to initialize the hotk with right values. In this
|
|
* method, we can make all the detection we want, and modify the hotk struct
|
|
* method, we can make all the detection we want, and modify the hotk struct
|
|
*/
|
|
*/
|
|
-static int __init asus_hotk_get_info(void)
|
|
|
|
|
|
+static int asus_hotk_get_info(void)
|
|
{
|
|
{
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
struct acpi_buffer dsdt = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
struct acpi_buffer dsdt = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
@@ -1101,7 +1101,7 @@ static int __init asus_hotk_get_info(void)
|
|
return AE_OK;
|
|
return AE_OK;
|
|
}
|
|
}
|
|
|
|
|
|
-static int __init asus_hotk_check(void)
|
|
|
|
|
|
+static int asus_hotk_check(void)
|
|
{
|
|
{
|
|
int result = 0;
|
|
int result = 0;
|
|
|
|
|
|
@@ -1119,7 +1119,7 @@ static int __init asus_hotk_check(void)
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
-static int __init asus_hotk_add(struct acpi_device *device)
|
|
|
|
|
|
+static int asus_hotk_add(struct acpi_device *device)
|
|
{
|
|
{
|
|
acpi_status status = AE_OK;
|
|
acpi_status status = AE_OK;
|
|
int result;
|
|
int result;
|