Pull trivial into test branch
This commit is contained in:
commit
1a39ed5888
|
@ -107,7 +107,6 @@ config ACPI_BUTTON
|
||||||
config ACPI_VIDEO
|
config ACPI_VIDEO
|
||||||
tristate "Video"
|
tristate "Video"
|
||||||
depends on X86
|
depends on X86
|
||||||
default y
|
|
||||||
help
|
help
|
||||||
This driver implement the ACPI Extensions For Display Adapters
|
This driver implement the ACPI Extensions For Display Adapters
|
||||||
for integrated graphics devices on motherboard, as specified in
|
for integrated graphics devices on motherboard, as specified in
|
||||||
|
@ -350,7 +349,6 @@ config ACPI_SBS
|
||||||
tristate "Smart Battery System (EXPERIMENTAL)"
|
tristate "Smart Battery System (EXPERIMENTAL)"
|
||||||
depends on X86 && I2C
|
depends on X86 && I2C
|
||||||
depends on EXPERIMENTAL
|
depends on EXPERIMENTAL
|
||||||
default y
|
|
||||||
help
|
help
|
||||||
This driver adds support for the Smart Battery System.
|
This driver adds support for the Smart Battery System.
|
||||||
Depends on I2C (Device Drivers ---> I2C support)
|
Depends on I2C (Device Drivers ---> I2C support)
|
||||||
|
|
|
@ -72,7 +72,7 @@ struct acpi_ac {
|
||||||
unsigned long state;
|
unsigned long state;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_ac_fops = {
|
static const struct file_operations acpi_ac_fops = {
|
||||||
.open = acpi_ac_open_fs,
|
.open = acpi_ac_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -557,7 +557,7 @@ static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
|
||||||
return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
|
return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_battery_info_ops = {
|
static const struct file_operations acpi_battery_info_ops = {
|
||||||
.open = acpi_battery_info_open_fs,
|
.open = acpi_battery_info_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
@ -565,7 +565,7 @@ static struct file_operations acpi_battery_info_ops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_battery_state_ops = {
|
static const struct file_operations acpi_battery_state_ops = {
|
||||||
.open = acpi_battery_state_open_fs,
|
.open = acpi_battery_state_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
@ -573,7 +573,7 @@ static struct file_operations acpi_battery_state_ops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_battery_alarm_ops = {
|
static const struct file_operations acpi_battery_alarm_ops = {
|
||||||
.open = acpi_battery_alarm_open_fs,
|
.open = acpi_battery_alarm_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_battery_write_alarm,
|
.write = acpi_battery_write_alarm,
|
||||||
|
|
|
@ -192,8 +192,8 @@ int acpi_bus_set_power(acpi_handle handle, int state)
|
||||||
/* Make sure this is a valid target state */
|
/* Make sure this is a valid target state */
|
||||||
|
|
||||||
if (!device->flags.power_manageable) {
|
if (!device->flags.power_manageable) {
|
||||||
printk(KERN_DEBUG "Device `[%s]' is not power manageable",
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable",
|
||||||
device->kobj.name);
|
device->kobj.name));
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -87,14 +87,14 @@ struct acpi_button {
|
||||||
unsigned long pushed;
|
unsigned long pushed;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_button_info_fops = {
|
static const struct file_operations acpi_button_info_fops = {
|
||||||
.open = acpi_button_info_open_fs,
|
.open = acpi_button_info_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
.release = single_release,
|
.release = single_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_button_state_fops = {
|
static const struct file_operations acpi_button_state_fops = {
|
||||||
.open = acpi_button_state_open_fs,
|
.open = acpi_button_state_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -929,7 +929,7 @@ static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
|
||||||
return single_open(file, acpi_ec_read_info, PDE(inode)->data);
|
return single_open(file, acpi_ec_read_info, PDE(inode)->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_ec_info_ops = {
|
static const struct file_operations acpi_ec_info_ops = {
|
||||||
.open = acpi_ec_info_open_fs,
|
.open = acpi_ec_info_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -99,7 +99,7 @@ static unsigned int acpi_system_poll_event(struct file *file, poll_table * wait)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_system_event_ops = {
|
static const struct file_operations acpi_system_event_ops = {
|
||||||
.open = acpi_system_open_event,
|
.open = acpi_system_open_event,
|
||||||
.read = acpi_system_read_event,
|
.read = acpi_system_read_event,
|
||||||
.release = acpi_system_close_event,
|
.release = acpi_system_close_event,
|
||||||
|
|
|
@ -120,7 +120,7 @@ acpi_fan_write_state(struct file *file, const char __user * buffer,
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_fan_state_ops = {
|
static const struct file_operations acpi_fan_state_ops = {
|
||||||
.open = acpi_fan_state_open_fs,
|
.open = acpi_fan_state_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_fan_write_state,
|
.write = acpi_fan_write_state,
|
||||||
|
|
|
@ -184,7 +184,7 @@ static union acpi_hotkey *get_hotkey_by_event(struct
|
||||||
*hotkey_list, int event);
|
*hotkey_list, int event);
|
||||||
|
|
||||||
/* event based config */
|
/* event based config */
|
||||||
static struct file_operations hotkey_config_fops = {
|
static const struct file_operations hotkey_config_fops = {
|
||||||
.open = hotkey_open_config,
|
.open = hotkey_open_config,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = hotkey_write_config,
|
.write = hotkey_write_config,
|
||||||
|
@ -193,7 +193,7 @@ static struct file_operations hotkey_config_fops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* polling based config */
|
/* polling based config */
|
||||||
static struct file_operations hotkey_poll_config_fops = {
|
static const struct file_operations hotkey_poll_config_fops = {
|
||||||
.open = hotkey_poll_open_config,
|
.open = hotkey_poll_open_config,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = hotkey_write_config,
|
.write = hotkey_write_config,
|
||||||
|
@ -202,7 +202,7 @@ static struct file_operations hotkey_poll_config_fops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* hotkey driver info */
|
/* hotkey driver info */
|
||||||
static struct file_operations hotkey_info_fops = {
|
static const struct file_operations hotkey_info_fops = {
|
||||||
.open = hotkey_info_open_fs,
|
.open = hotkey_info_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
@ -210,7 +210,7 @@ static struct file_operations hotkey_info_fops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* action */
|
/* action */
|
||||||
static struct file_operations hotkey_action_fops = {
|
static const struct file_operations hotkey_action_fops = {
|
||||||
.open = hotkey_action_open_fs,
|
.open = hotkey_action_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = hotkey_execute_aml_method,
|
.write = hotkey_execute_aml_method,
|
||||||
|
@ -219,7 +219,7 @@ static struct file_operations hotkey_action_fops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* polling results */
|
/* polling results */
|
||||||
static struct file_operations hotkey_polling_fops = {
|
static const struct file_operations hotkey_polling_fops = {
|
||||||
.open = hotkey_polling_open_fs,
|
.open = hotkey_polling_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -80,7 +80,7 @@ struct acpi_power_resource {
|
||||||
|
|
||||||
static struct list_head acpi_power_resource_list;
|
static struct list_head acpi_power_resource_list;
|
||||||
|
|
||||||
static struct file_operations acpi_power_fops = {
|
static const struct file_operations acpi_power_fops = {
|
||||||
.open = acpi_power_open_fs,
|
.open = acpi_power_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -102,7 +102,7 @@ static struct acpi_driver acpi_processor_driver = {
|
||||||
#define INSTALL_NOTIFY_HANDLER 1
|
#define INSTALL_NOTIFY_HANDLER 1
|
||||||
#define UNINSTALL_NOTIFY_HANDLER 2
|
#define UNINSTALL_NOTIFY_HANDLER 2
|
||||||
|
|
||||||
static struct file_operations acpi_processor_info_fops = {
|
static const struct file_operations acpi_processor_info_fops = {
|
||||||
.open = acpi_processor_info_open_fs,
|
.open = acpi_processor_info_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -1070,7 +1070,7 @@ static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
|
||||||
PDE(inode)->data);
|
PDE(inode)->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_processor_power_fops = {
|
static const struct file_operations acpi_processor_power_fops = {
|
||||||
.open = acpi_processor_power_open_fs,
|
.open = acpi_processor_power_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
|
|
@ -434,7 +434,7 @@ acpi_system_wakeup_device_open_fs(struct inode *inode, struct file *file)
|
||||||
PDE(inode)->data);
|
PDE(inode)->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_system_wakeup_device_fops = {
|
static const struct file_operations acpi_system_wakeup_device_fops = {
|
||||||
.open = acpi_system_wakeup_device_open_fs,
|
.open = acpi_system_wakeup_device_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_system_write_wakeup_device,
|
.write = acpi_system_write_wakeup_device,
|
||||||
|
@ -443,7 +443,7 @@ static struct file_operations acpi_system_wakeup_device_fops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI_SLEEP_PROC_SLEEP
|
#ifdef CONFIG_ACPI_SLEEP_PROC_SLEEP
|
||||||
static struct file_operations acpi_system_sleep_fops = {
|
static const struct file_operations acpi_system_sleep_fops = {
|
||||||
.open = acpi_system_sleep_open_fs,
|
.open = acpi_system_sleep_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_system_write_sleep,
|
.write = acpi_system_write_sleep,
|
||||||
|
@ -452,7 +452,7 @@ static struct file_operations acpi_system_sleep_fops = {
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_ACPI_SLEEP_PROC_SLEEP */
|
#endif /* CONFIG_ACPI_SLEEP_PROC_SLEEP */
|
||||||
|
|
||||||
static struct file_operations acpi_system_alarm_fops = {
|
static const struct file_operations acpi_system_alarm_fops = {
|
||||||
.open = acpi_system_alarm_open_fs,
|
.open = acpi_system_alarm_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_system_write_alarm,
|
.write = acpi_system_write_alarm,
|
||||||
|
|
|
@ -57,7 +57,7 @@ static int acpi_system_info_open_fs(struct inode *inode, struct file *file)
|
||||||
return single_open(file, acpi_system_read_info, PDE(inode)->data);
|
return single_open(file, acpi_system_read_info, PDE(inode)->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations acpi_system_info_ops = {
|
static const struct file_operations acpi_system_info_ops = {
|
||||||
.open = acpi_system_info_open_fs,
|
.open = acpi_system_info_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
|
@ -67,7 +67,7 @@ static struct file_operations acpi_system_info_ops = {
|
||||||
static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t,
|
static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t,
|
||||||
loff_t *);
|
loff_t *);
|
||||||
|
|
||||||
static struct file_operations acpi_system_dsdt_ops = {
|
static const struct file_operations acpi_system_dsdt_ops = {
|
||||||
.read = acpi_system_read_dsdt,
|
.read = acpi_system_read_dsdt,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ acpi_system_read_dsdt(struct file *file,
|
||||||
static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t,
|
static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t,
|
||||||
loff_t *);
|
loff_t *);
|
||||||
|
|
||||||
static struct file_operations acpi_system_fadt_ops = {
|
static const struct file_operations acpi_system_fadt_ops = {
|
||||||
.read = acpi_system_read_fadt,
|
.read = acpi_system_read_fadt,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -176,21 +176,21 @@ struct acpi_thermal {
|
||||||
struct timer_list timer;
|
struct timer_list timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_thermal_state_fops = {
|
static const struct file_operations acpi_thermal_state_fops = {
|
||||||
.open = acpi_thermal_state_open_fs,
|
.open = acpi_thermal_state_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
.release = single_release,
|
.release = single_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_thermal_temp_fops = {
|
static const struct file_operations acpi_thermal_temp_fops = {
|
||||||
.open = acpi_thermal_temp_open_fs,
|
.open = acpi_thermal_temp_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
.release = single_release,
|
.release = single_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_thermal_trip_fops = {
|
static const struct file_operations acpi_thermal_trip_fops = {
|
||||||
.open = acpi_thermal_trip_open_fs,
|
.open = acpi_thermal_trip_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_thermal_write_trip_points,
|
.write = acpi_thermal_write_trip_points,
|
||||||
|
@ -198,7 +198,7 @@ static struct file_operations acpi_thermal_trip_fops = {
|
||||||
.release = single_release,
|
.release = single_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_thermal_cooling_fops = {
|
static const struct file_operations acpi_thermal_cooling_fops = {
|
||||||
.open = acpi_thermal_cooling_open_fs,
|
.open = acpi_thermal_cooling_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_thermal_write_cooling_mode,
|
.write = acpi_thermal_write_cooling_mode,
|
||||||
|
@ -206,7 +206,7 @@ static struct file_operations acpi_thermal_cooling_fops = {
|
||||||
.release = single_release,
|
.release = single_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct file_operations acpi_thermal_polling_fops = {
|
static const struct file_operations acpi_thermal_polling_fops = {
|
||||||
.open = acpi_thermal_polling_open_fs,
|
.open = acpi_thermal_polling_open_fs,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.write = acpi_thermal_write_polling,
|
.write = acpi_thermal_write_polling,
|
||||||
|
|
Loading…
Reference in New Issue