Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8010e0db authored by Guenter Roeck's avatar Guenter Roeck Committed by Dmitry Torokhov
Browse files

Input: misc - drop empty remove functions



Empty remove functions don't serve a useful purpose and can be removed.

Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent f20b161f
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -124,11 +124,6 @@ static int e3x0_button_probe(struct platform_device *pdev)
	return 0;
}

static int e3x0_button_remove(struct platform_device *pdev)
{
	return 0;
}

#ifdef CONFIG_OF
static const struct of_device_id e3x0_button_match[] = {
	{ .compatible = "ettus,e3x0-button", },
@@ -144,7 +139,6 @@ static struct platform_driver e3x0_button_driver = {
		.pm	= &e3x0_button_pm_ops,
	},
	.probe		= e3x0_button_probe,
	.remove		= e3x0_button_remove,
};

module_platform_driver(e3x0_button_driver);
+0 −6
Original line number Diff line number Diff line
@@ -120,17 +120,11 @@ static int hi65xx_powerkey_probe(struct platform_device *pdev)
	return 0;
}

static int hi65xx_powerkey_remove(struct platform_device *pdev)
{
	return 0;
}

static struct platform_driver hi65xx_powerkey_driver = {
	.driver = {
		.name = "hi65xx-powerkey",
	},
	.probe = hi65xx_powerkey_probe,
	.remove  = hi65xx_powerkey_remove,
};
module_platform_driver(hi65xx_powerkey_driver);

+0 −6
Original line number Diff line number Diff line
@@ -438,11 +438,6 @@ static int pmic8xxx_pwrkey_probe(struct platform_device *pdev)
	return 0;
}

static int pmic8xxx_pwrkey_remove(struct platform_device *pdev)
{
	return 0;
}

static const struct of_device_id pm8xxx_pwr_key_id_table[] = {
	{ .compatible = "qcom,pm8058-pwrkey", .data = &pm8058_pwrkey_shutdown },
	{ .compatible = "qcom,pm8921-pwrkey", .data = &pm8921_pwrkey_shutdown },
@@ -452,7 +447,6 @@ MODULE_DEVICE_TABLE(of, pm8xxx_pwr_key_id_table);

static struct platform_driver pmic8xxx_pwrkey_driver = {
	.probe		= pmic8xxx_pwrkey_probe,
	.remove		= pmic8xxx_pwrkey_remove,
	.shutdown	= pmic8xxx_pwrkey_shutdown,
	.driver		= {
		.name	= "pm8xxx-pwrkey",
+0 −6
Original line number Diff line number Diff line
@@ -76,14 +76,8 @@ static int retu_pwrbutton_probe(struct platform_device *pdev)
	return 0;
}

static int retu_pwrbutton_remove(struct platform_device *pdev)
{
	return 0;
}

static struct platform_driver retu_pwrbutton_driver = {
	.probe		= retu_pwrbutton_probe,
	.remove		= retu_pwrbutton_remove,
	.driver		= {
		.name	= "retu-pwrbutton",
	},
+0 −6
Original line number Diff line number Diff line
@@ -172,11 +172,6 @@ static int sirfsoc_pwrc_probe(struct platform_device *pdev)
	return 0;
}

static int sirfsoc_pwrc_remove(struct platform_device *pdev)
{
	return 0;
}

static int __maybe_unused sirfsoc_pwrc_resume(struct device *dev)
{
	struct sirfsoc_pwrc_drvdata *pwrcdrv = dev_get_drvdata(dev);
@@ -198,7 +193,6 @@ static SIMPLE_DEV_PM_OPS(sirfsoc_pwrc_pm_ops, NULL, sirfsoc_pwrc_resume);

static struct platform_driver sirfsoc_pwrc_driver = {
	.probe		= sirfsoc_pwrc_probe,
	.remove		= sirfsoc_pwrc_remove,
	.driver		= {
		.name	= "sirfsoc-pwrc",
		.pm	= &sirfsoc_pwrc_pm_ops,