Merge tag 'input-for-v6.3-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input updates from Dmitry Torokhov: - a set of tweaks to iqs269a touch controller driver - a fix for ads7846 driver to properly handle 7845 chip - cap11xx driver will support cap1203, cap1293 and cap1298 models - xpad driver will support 8BitDo Pro 2 Wired Controller - input drivers have been switched to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr() - other miscellaneous fixes and tweaks * tag 'input-for-v6.3-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (113 commits) dt-bindings: input: iqs626a: Redefine trackpad property types Input: iqs626a - drop unused device node references dt-bindings: input: touchscreen: st,stmfts: convert to dtschema Input: cyttsp5 - fix bitmask for touch buttons Input: exc3000 - properly stop timer on shutdown Input: synaptics-rmi4 - fix SPI device ID Input: cap11xx - add support for cap1203, cap1293 and cap1298 dt-bindings: input: microchip,cap11xx: add cap1203, cap1293 and cap1298 Input: pmic8xxx-keypad - fix a Kconfig spelling mistake & hyphenation Input: edt-ft5x06 - fix typo in a comment Input: tegra-kbc - use devm_platform_get_and_ioremap_resource() Input: st-keyscan - use devm_platform_get_and_ioremap_resource() Input: spear-keyboard - use devm_platform_get_and_ioremap_resource() Input: olpc_apsp - use devm_platform_get_and_ioremap_resource() Input: arc_ps2 - use devm_platform_get_and_ioremap_resource() Input: apbps2 - use devm_platform_get_and_ioremap_resource() Input: altera_ps2 - use devm_platform_get_and_ioremap_resource() Input: ads7846 - don't check penirq immediately for 7845 Input: ads7846 - always set last command to PWRDOWN Input: ads7846 - don't report pressure for ads7845 ...
This commit is contained in:
@@ -1349,7 +1349,7 @@ static int cyapa_probe(struct i2c_client *client)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused cyapa_suspend(struct device *dev)
|
||||
static int cyapa_suspend(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct cyapa *cyapa = i2c_get_clientdata(client);
|
||||
@@ -1397,7 +1397,7 @@ static int __maybe_unused cyapa_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused cyapa_resume(struct device *dev)
|
||||
static int cyapa_resume(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct cyapa *cyapa = i2c_get_clientdata(client);
|
||||
@@ -1424,7 +1424,7 @@ static int __maybe_unused cyapa_resume(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused cyapa_runtime_suspend(struct device *dev)
|
||||
static int cyapa_runtime_suspend(struct device *dev)
|
||||
{
|
||||
struct cyapa *cyapa = dev_get_drvdata(dev);
|
||||
int error;
|
||||
@@ -1439,7 +1439,7 @@ static int __maybe_unused cyapa_runtime_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused cyapa_runtime_resume(struct device *dev)
|
||||
static int cyapa_runtime_resume(struct device *dev)
|
||||
{
|
||||
struct cyapa *cyapa = dev_get_drvdata(dev);
|
||||
int error;
|
||||
@@ -1453,8 +1453,8 @@ static int __maybe_unused cyapa_runtime_resume(struct device *dev)
|
||||
}
|
||||
|
||||
static const struct dev_pm_ops cyapa_pm_ops = {
|
||||
SET_SYSTEM_SLEEP_PM_OPS(cyapa_suspend, cyapa_resume)
|
||||
SET_RUNTIME_PM_OPS(cyapa_runtime_suspend, cyapa_runtime_resume, NULL)
|
||||
SYSTEM_SLEEP_PM_OPS(cyapa_suspend, cyapa_resume)
|
||||
RUNTIME_PM_OPS(cyapa_runtime_suspend, cyapa_runtime_resume, NULL)
|
||||
};
|
||||
|
||||
static const struct i2c_device_id cyapa_id_table[] = {
|
||||
@@ -1484,7 +1484,7 @@ MODULE_DEVICE_TABLE(of, cyapa_of_match);
|
||||
static struct i2c_driver cyapa_driver = {
|
||||
.driver = {
|
||||
.name = "cyapa",
|
||||
.pm = &cyapa_pm_ops,
|
||||
.pm = pm_ptr(&cyapa_pm_ops),
|
||||
.acpi_match_table = ACPI_PTR(cyapa_acpi_id),
|
||||
.of_match_table = of_match_ptr(cyapa_of_match),
|
||||
},
|
||||
|
||||
@@ -1328,7 +1328,7 @@ static int elan_probe(struct i2c_client *client)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused elan_suspend(struct device *dev)
|
||||
static int elan_suspend(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct elan_tp_data *data = i2c_get_clientdata(client);
|
||||
@@ -1365,7 +1365,7 @@ err:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int __maybe_unused elan_resume(struct device *dev)
|
||||
static int elan_resume(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct elan_tp_data *data = i2c_get_clientdata(client);
|
||||
@@ -1394,7 +1394,7 @@ err:
|
||||
return error;
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(elan_pm_ops, elan_suspend, elan_resume);
|
||||
static DEFINE_SIMPLE_DEV_PM_OPS(elan_pm_ops, elan_suspend, elan_resume);
|
||||
|
||||
static const struct i2c_device_id elan_id[] = {
|
||||
{ DRIVER_NAME, 0 },
|
||||
@@ -1418,7 +1418,7 @@ MODULE_DEVICE_TABLE(of, elan_of_match);
|
||||
static struct i2c_driver elan_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.pm = &elan_pm_ops,
|
||||
.pm = pm_sleep_ptr(&elan_pm_ops),
|
||||
.acpi_match_table = ACPI_PTR(elan_acpi_id),
|
||||
.of_match_table = of_match_ptr(elan_of_match),
|
||||
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
||||
|
||||
@@ -315,7 +315,7 @@ static int navpoint_remove(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused navpoint_suspend(struct device *dev)
|
||||
static int navpoint_suspend(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
struct navpoint *navpoint = platform_get_drvdata(pdev);
|
||||
@@ -329,7 +329,7 @@ static int __maybe_unused navpoint_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused navpoint_resume(struct device *dev)
|
||||
static int navpoint_resume(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
struct navpoint *navpoint = platform_get_drvdata(pdev);
|
||||
@@ -343,14 +343,15 @@ static int __maybe_unused navpoint_resume(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(navpoint_pm_ops, navpoint_suspend, navpoint_resume);
|
||||
static DEFINE_SIMPLE_DEV_PM_OPS(navpoint_pm_ops,
|
||||
navpoint_suspend, navpoint_resume);
|
||||
|
||||
static struct platform_driver navpoint_driver = {
|
||||
.probe = navpoint_probe,
|
||||
.remove = navpoint_remove,
|
||||
.driver = {
|
||||
.name = "navpoint",
|
||||
.pm = &navpoint_pm_ops,
|
||||
.pm = pm_sleep_ptr(&navpoint_pm_ops),
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@@ -597,7 +597,7 @@ static void synaptics_i2c_remove(struct i2c_client *client)
|
||||
kfree(touch);
|
||||
}
|
||||
|
||||
static int __maybe_unused synaptics_i2c_suspend(struct device *dev)
|
||||
static int synaptics_i2c_suspend(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct synaptics_i2c *touch = i2c_get_clientdata(client);
|
||||
@@ -610,7 +610,7 @@ static int __maybe_unused synaptics_i2c_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused synaptics_i2c_resume(struct device *dev)
|
||||
static int synaptics_i2c_resume(struct device *dev)
|
||||
{
|
||||
int ret;
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
@@ -626,8 +626,8 @@ static int __maybe_unused synaptics_i2c_resume(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(synaptics_i2c_pm, synaptics_i2c_suspend,
|
||||
synaptics_i2c_resume);
|
||||
static DEFINE_SIMPLE_DEV_PM_OPS(synaptics_i2c_pm, synaptics_i2c_suspend,
|
||||
synaptics_i2c_resume);
|
||||
|
||||
static const struct i2c_device_id synaptics_i2c_id_table[] = {
|
||||
{ "synaptics_i2c", 0 },
|
||||
@@ -647,7 +647,7 @@ static struct i2c_driver synaptics_i2c_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.of_match_table = of_match_ptr(synaptics_i2c_of_match),
|
||||
.pm = &synaptics_i2c_pm,
|
||||
.pm = pm_sleep_ptr(&synaptics_i2c_pm),
|
||||
},
|
||||
|
||||
.probe_new = synaptics_i2c_probe,
|
||||
|
||||
Reference in New Issue
Block a user