diff options
author | Len Brown <len.brown@intel.com> | 2009-01-09 09:37:20 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-01-09 09:37:20 +0100 |
commit | 33a8c927e423a205bcbbecdc43b451bad781a08e (patch) | |
tree | 4ed692143eec382ba87872cc48e7162e06bd7465 /drivers/acpi/ec.c | |
parent | Merge branches 'release', 'bugzilla-11880', 'bugzilla-12037' and 'bugzilla-12... (diff) | |
parent | ACPI: ec.c, pci_link.c, video_detec.c: static (diff) | |
download | linux-33a8c927e423a205bcbbecdc43b451bad781a08e.tar.xz linux-33a8c927e423a205bcbbecdc43b451bad781a08e.zip |
Merge branch 'fluff' into release
Diffstat (limited to 'drivers/acpi/ec.c')
-rw-r--r-- | drivers/acpi/ec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 2e8317bf723e..8dfcbb8aff73 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -369,7 +369,7 @@ unlock: * Note: samsung nv5000 doesn't work with ec burst mode. * http://bugzilla.kernel.org/show_bug.cgi?id=4980 */ -int acpi_ec_burst_enable(struct acpi_ec *ec) +static int acpi_ec_burst_enable(struct acpi_ec *ec) { u8 d; struct transaction t = {.command = ACPI_EC_BURST_ENABLE, @@ -379,7 +379,7 @@ int acpi_ec_burst_enable(struct acpi_ec *ec) return acpi_ec_transaction(ec, &t, 0); } -int acpi_ec_burst_disable(struct acpi_ec *ec) +static int acpi_ec_burst_disable(struct acpi_ec *ec) { struct transaction t = {.command = ACPI_EC_BURST_DISABLE, .wdata = NULL, .rdata = NULL, |