Commit 1f7ff11c authored by Won Chung's avatar Won Chung Committed by Greg Kroah-Hartman

driver core: location: Add "back" as a possible output for panel

Add "back" as a possible panel output when _PLD output from ACPI
indicates back panel.

Fixes: 6423d295 ("driver core: Add sysfs support for physical location of a device")
Signed-off-by: default avatarWon Chung <wonchung@google.com>
Link: https://lore.kernel.org/r/20220509214930.3573518-1-wonchung@google.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 28330dcc
......@@ -57,6 +57,9 @@ static ssize_t panel_show(struct device *dev, struct device_attribute *attr,
case DEVICE_PANEL_FRONT:
panel = "front";
break;
case DEVICE_PANEL_BACK:
panel = "back";
break;
default:
panel = "unknown";
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment