Subject: [PATCH] [acpi ec] Add real start/stop methods Signed-off-by: Patrick Mochel --- drivers/acpi/drivers/ec/driver.c | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) applies-to: 19600600234de0d70ede8877a781c0b2fd360212 1cae31964a327590eecacaed013b8999cffba3ba diff --git a/drivers/acpi/drivers/ec/driver.c b/drivers/acpi/drivers/ec/driver.c index 9fac4f8..7ba4bd8 100644 --- a/drivers/acpi/drivers/ec/driver.c +++ b/drivers/acpi/drivers/ec/driver.c @@ -66,8 +66,17 @@ static int ec_remove(struct acpi_dev * a return 0; } -acpi_no_start(ec); -acpi_no_stop(ec); +static int ec_start(struct acpi_dev * ad) +{ + return 0; +} + + +static int ec_stop(struct acpi_dev * ad) +{ + return 0; +} + acpi_no_shutdown(ec); acpi_no_suspend(ec); acpi_no_resume(ec); --- 0.99.9.GIT