Merge branch 'pm-drivers'
* pm-drivers: rtc-cmos: report wakeups from interrupt handler PM / crypto / ux500: Use struct dev_pm_ops for power management PM / IPMI: Remove empty legacy PCI PM callbacks tpm_nsc: Use struct dev_pm_ops for power management tpm_tis: Use struct dev_pm_ops for power management tpm_atmel: Use struct dev_pm_ops for power management PM / TPM: Drop unused pm_message_t argument from tpm_pm_suspend() omap-rng: Use struct dev_pm_ops for power management mg_disk: Use struct dev_pm_ops for power management msi-laptop: Use struct dev_pm_ops for power management hdaps: Use struct dev_pm_ops for power management sonypi: Use struct dev_pm_ops for power management intel_mid_thermal: Use struct dev_pm_ops for power management acer-wmi: Use struct dev_pm_ops for power management intel_ips: Remove empty legacy PM callbacks thinkpad_acpi: Use struct dev_pm_ops instead of legacy PM routines thinkpad_acpi: Drop pm_message_t arguments from suspend routines
Šī revīzija ir iekļauta:
@@ -1877,8 +1877,7 @@ static int acer_platform_remove(struct platform_device *device)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int acer_platform_suspend(struct platform_device *dev,
|
||||
pm_message_t state)
|
||||
static int acer_suspend(struct device *dev)
|
||||
{
|
||||
u32 value;
|
||||
struct acer_data *data = &interface->data;
|
||||
@@ -1900,7 +1899,7 @@ pm_message_t state)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int acer_platform_resume(struct platform_device *device)
|
||||
static int acer_resume(struct device *dev)
|
||||
{
|
||||
struct acer_data *data = &interface->data;
|
||||
|
||||
@@ -1916,6 +1915,8 @@ static int acer_platform_resume(struct platform_device *device)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(acer_pm, acer_suspend, acer_resume);
|
||||
|
||||
static void acer_platform_shutdown(struct platform_device *device)
|
||||
{
|
||||
struct acer_data *data = &interface->data;
|
||||
@@ -1931,11 +1932,10 @@ static struct platform_driver acer_platform_driver = {
|
||||
.driver = {
|
||||
.name = "acer-wmi",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &acer_pm,
|
||||
},
|
||||
.probe = acer_platform_probe,
|
||||
.remove = acer_platform_remove,
|
||||
.suspend = acer_platform_suspend,
|
||||
.resume = acer_platform_resume,
|
||||
.shutdown = acer_platform_shutdown,
|
||||
};
|
||||
|
||||
|
@@ -305,17 +305,19 @@ static int hdaps_probe(struct platform_device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hdaps_resume(struct platform_device *dev)
|
||||
static int hdaps_resume(struct device *dev)
|
||||
{
|
||||
return hdaps_device_init();
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(hdaps_pm, NULL, hdaps_resume);
|
||||
|
||||
static struct platform_driver hdaps_driver = {
|
||||
.probe = hdaps_probe,
|
||||
.resume = hdaps_resume,
|
||||
.driver = {
|
||||
.name = "hdaps",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &hdaps_pm,
|
||||
},
|
||||
};
|
||||
|
||||
|
@@ -1697,21 +1697,6 @@ static void ips_remove(struct pci_dev *dev)
|
||||
dev_dbg(&dev->dev, "IPS driver removed\n");
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int ips_suspend(struct pci_dev *dev, pm_message_t state)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ips_resume(struct pci_dev *dev)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
#define ips_suspend NULL
|
||||
#define ips_resume NULL
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
static void ips_shutdown(struct pci_dev *dev)
|
||||
{
|
||||
}
|
||||
@@ -1721,8 +1706,6 @@ static struct pci_driver ips_pci_driver = {
|
||||
.id_table = ips_id_table,
|
||||
.probe = ips_probe,
|
||||
.remove = ips_remove,
|
||||
.suspend = ips_suspend,
|
||||
.resume = ips_resume,
|
||||
.shutdown = ips_shutdown,
|
||||
};
|
||||
|
||||
|
@@ -418,23 +418,23 @@ static struct thermal_device_info *initialize_sensor(int index)
|
||||
|
||||
/**
|
||||
* mid_thermal_resume - resume routine
|
||||
* @pdev: platform device structure
|
||||
* @dev: device structure
|
||||
*
|
||||
* mid thermal resume: re-initializes the adc. Can sleep.
|
||||
*/
|
||||
static int mid_thermal_resume(struct platform_device *pdev)
|
||||
static int mid_thermal_resume(struct device *dev)
|
||||
{
|
||||
return mid_initialize_adc(&pdev->dev);
|
||||
return mid_initialize_adc(dev);
|
||||
}
|
||||
|
||||
/**
|
||||
* mid_thermal_suspend - suspend routine
|
||||
* @pdev: platform device structure
|
||||
* @dev: device structure
|
||||
*
|
||||
* mid thermal suspend implements the suspend functionality
|
||||
* by stopping the ADC. Can sleep.
|
||||
*/
|
||||
static int mid_thermal_suspend(struct platform_device *pdev, pm_message_t mesg)
|
||||
static int mid_thermal_suspend(struct device *dev)
|
||||
{
|
||||
/*
|
||||
* This just stops the ADC and does not disable it.
|
||||
@@ -444,6 +444,9 @@ static int mid_thermal_suspend(struct platform_device *pdev, pm_message_t mesg)
|
||||
return configure_adc(0);
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(mid_thermal_pm,
|
||||
mid_thermal_suspend, mid_thermal_resume);
|
||||
|
||||
/**
|
||||
* read_curr_temp - reads the current temperature and stores in temp
|
||||
* @temp: holds the current temperature value after reading
|
||||
@@ -557,10 +560,9 @@ static struct platform_driver mid_thermal_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &mid_thermal_pm,
|
||||
},
|
||||
.probe = mid_thermal_probe,
|
||||
.suspend = mid_thermal_suspend,
|
||||
.resume = mid_thermal_resume,
|
||||
.remove = __devexit_p(mid_thermal_remove),
|
||||
.id_table = therm_id_table,
|
||||
};
|
||||
|
@@ -85,7 +85,8 @@
|
||||
#define MSI_STANDARD_EC_TOUCHPAD_ADDRESS 0xe4
|
||||
#define MSI_STANDARD_EC_TOUCHPAD_MASK (1 << 4)
|
||||
|
||||
static int msi_laptop_resume(struct platform_device *device);
|
||||
static int msi_laptop_resume(struct device *device);
|
||||
static SIMPLE_DEV_PM_OPS(msi_laptop_pm, NULL, msi_laptop_resume);
|
||||
|
||||
#define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f
|
||||
|
||||
@@ -437,8 +438,8 @@ static struct platform_driver msipf_driver = {
|
||||
.driver = {
|
||||
.name = "msi-laptop-pf",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &msi_laptop_pm,
|
||||
},
|
||||
.resume = msi_laptop_resume,
|
||||
};
|
||||
|
||||
static struct platform_device *msipf_device;
|
||||
@@ -752,7 +753,7 @@ err_bluetooth:
|
||||
return retval;
|
||||
}
|
||||
|
||||
static int msi_laptop_resume(struct platform_device *device)
|
||||
static int msi_laptop_resume(struct device *device)
|
||||
{
|
||||
u8 data;
|
||||
int result;
|
||||
|
@@ -277,7 +277,7 @@ struct ibm_struct {
|
||||
int (*write) (char *);
|
||||
void (*exit) (void);
|
||||
void (*resume) (void);
|
||||
void (*suspend) (pm_message_t state);
|
||||
void (*suspend) (void);
|
||||
void (*shutdown) (void);
|
||||
|
||||
struct list_head all_drivers;
|
||||
@@ -922,8 +922,7 @@ static struct input_dev *tpacpi_inputdev;
|
||||
static struct mutex tpacpi_inputdev_send_mutex;
|
||||
static LIST_HEAD(tpacpi_all_drivers);
|
||||
|
||||
static int tpacpi_suspend_handler(struct platform_device *pdev,
|
||||
pm_message_t state)
|
||||
static int tpacpi_suspend_handler(struct device *dev)
|
||||
{
|
||||
struct ibm_struct *ibm, *itmp;
|
||||
|
||||
@@ -931,13 +930,13 @@ static int tpacpi_suspend_handler(struct platform_device *pdev,
|
||||
&tpacpi_all_drivers,
|
||||
all_drivers) {
|
||||
if (ibm->suspend)
|
||||
(ibm->suspend)(state);
|
||||
(ibm->suspend)();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tpacpi_resume_handler(struct platform_device *pdev)
|
||||
static int tpacpi_resume_handler(struct device *dev)
|
||||
{
|
||||
struct ibm_struct *ibm, *itmp;
|
||||
|
||||
@@ -951,6 +950,9 @@ static int tpacpi_resume_handler(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(tpacpi_pm,
|
||||
tpacpi_suspend_handler, tpacpi_resume_handler);
|
||||
|
||||
static void tpacpi_shutdown_handler(struct platform_device *pdev)
|
||||
{
|
||||
struct ibm_struct *ibm, *itmp;
|
||||
@@ -967,9 +969,8 @@ static struct platform_driver tpacpi_pdriver = {
|
||||
.driver = {
|
||||
.name = TPACPI_DRVR_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &tpacpi_pm,
|
||||
},
|
||||
.suspend = tpacpi_suspend_handler,
|
||||
.resume = tpacpi_resume_handler,
|
||||
.shutdown = tpacpi_shutdown_handler,
|
||||
};
|
||||
|
||||
@@ -3758,7 +3759,7 @@ static void hotkey_notify(struct ibm_struct *ibm, u32 event)
|
||||
}
|
||||
}
|
||||
|
||||
static void hotkey_suspend(pm_message_t state)
|
||||
static void hotkey_suspend(void)
|
||||
{
|
||||
/* Do these on suspend, we get the events on early resume! */
|
||||
hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
|
||||
@@ -6329,7 +6330,7 @@ static int __init brightness_init(struct ibm_init_struct *iibm)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void brightness_suspend(pm_message_t state)
|
||||
static void brightness_suspend(void)
|
||||
{
|
||||
tpacpi_brightness_checkpoint_nvram();
|
||||
}
|
||||
@@ -6748,7 +6749,7 @@ static struct snd_kcontrol_new volume_alsa_control_mute __devinitdata = {
|
||||
.get = volume_alsa_mute_get,
|
||||
};
|
||||
|
||||
static void volume_suspend(pm_message_t state)
|
||||
static void volume_suspend(void)
|
||||
{
|
||||
tpacpi_volume_checkpoint_nvram();
|
||||
}
|
||||
@@ -8107,7 +8108,7 @@ static void fan_exit(void)
|
||||
flush_workqueue(tpacpi_wq);
|
||||
}
|
||||
|
||||
static void fan_suspend(pm_message_t state)
|
||||
static void fan_suspend(void)
|
||||
{
|
||||
int rc;
|
||||
|
||||
|
Atsaukties uz šo jaunā problēmā
Block a user