Skip to content

Commit

Permalink
ACPICA: Remove trailing comma in enum declarations
Browse files Browse the repository at this point in the history
SunStudio compiler complains about trailing commas in enum
declarations.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Bob Moore authored and Rafael J. Wysocki committed Mar 11, 2013
1 parent ae1b476 commit 6be58e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/acpi/actbl3.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ struct acpi_fpdt_header {

enum acpi_fpdt_type {
ACPI_FPDT_TYPE_BOOT = 0,
ACPI_FPDT_TYPE_S3PERF = 1,
ACPI_FPDT_TYPE_S3PERF = 1
};

/*
Expand Down Expand Up @@ -223,7 +223,7 @@ struct acpi_s3pt_header {

enum acpi_s3pt_type {
ACPI_S3PT_TYPE_RESUME = 0,
ACPI_S3PT_TYPE_SUSPEND = 1,
ACPI_S3PT_TYPE_SUSPEND = 1
};

struct acpi_s3pt_resume {
Expand Down

0 comments on commit 6be58e2

Please sign in to comment.