mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
power_meter: acpi_device_class "power_meter_resource" too long
acpi_device_class can only be 19 characters and a NULL terminator. The current code has a buffer overflow in acpi_power_meter_add(): strcpy(acpi_device_class(device), ACPI_POWER_METER_CLASS); Signed-off-by: Dan Carpenter <error27@gmail.com> Cc: Len Brown <lenb@kernel.org> Cc: "Darrick J. Wong" <djwong@us.ibm.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
a40770a953
commit
18262714ca
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@
|
|||
#define ACPI_POWER_METER_NAME "power_meter"
|
||||
ACPI_MODULE_NAME(ACPI_POWER_METER_NAME);
|
||||
#define ACPI_POWER_METER_DEVICE_NAME "Power Meter"
|
||||
#define ACPI_POWER_METER_CLASS "power_meter_resource"
|
||||
#define ACPI_POWER_METER_CLASS "pwr_meter_resource"
|
||||
|
||||
#define NUM_SENSORS 17
|
||||
|
||||
|
|
Loading…
Reference in a new issue