Skip to content

Commit b58b9ff

Browse files
mergeMatthew Garrett
authored andcommitted
Fix log message about future removal of interface
If this is going away, it won't be in 2012. Signed-off-by: Martin Kepplinger <martink@posteo.de> Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
1 parent f79a901 commit b58b9ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/platform/x86/acer-wmi.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,7 +1659,7 @@ static ssize_t show_bool_threeg(struct device *dev,
16591659
u32 result; \
16601660
acpi_status status;
16611661

1662-
pr_info("This threeg sysfs will be removed in 2012 - used by: %s\n",
1662+
pr_info("This threeg sysfs will be removed in 2014 - used by: %s\n",
16631663
current->comm);
16641664
status = get_u32(&result, ACER_CAP_THREEG);
16651665
if (ACPI_SUCCESS(status))
@@ -1672,7 +1672,7 @@ static ssize_t set_bool_threeg(struct device *dev,
16721672
{
16731673
u32 tmp = simple_strtoul(buf, NULL, 10);
16741674
acpi_status status = set_u32(tmp, ACER_CAP_THREEG);
1675-
pr_info("This threeg sysfs will be removed in 2012 - used by: %s\n",
1675+
pr_info("This threeg sysfs will be removed in 2014 - used by: %s\n",
16761676
current->comm);
16771677
if (ACPI_FAILURE(status))
16781678
return -EINVAL;
@@ -1684,7 +1684,7 @@ static DEVICE_ATTR(threeg, S_IRUGO | S_IWUSR, show_bool_threeg,
16841684
static ssize_t show_interface(struct device *dev, struct device_attribute *attr,
16851685
char *buf)
16861686
{
1687-
pr_info("This interface sysfs will be removed in 2012 - used by: %s\n",
1687+
pr_info("This interface sysfs will be removed in 2014 - used by: %s\n",
16881688
current->comm);
16891689
switch (interface->type) {
16901690
case ACER_AMW0:

0 commit comments

Comments
 (0)