diff options
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/apei/erst.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/acpi/apei/erst.c b/drivers/acpi/apei/erst.c index de3ae92adaa5..d842ac4f8cfe 100644 --- a/drivers/acpi/apei/erst.c +++ b/drivers/acpi/apei/erst.c | |||
@@ -933,9 +933,10 @@ static int erst_open_pstore(struct pstore_info *psi); | |||
933 | static int erst_close_pstore(struct pstore_info *psi); | 933 | static int erst_close_pstore(struct pstore_info *psi); |
934 | static ssize_t erst_reader(u64 *id, enum pstore_type_id *type, | 934 | static ssize_t erst_reader(u64 *id, enum pstore_type_id *type, |
935 | struct timespec *time, struct pstore_info *psi); | 935 | struct timespec *time, struct pstore_info *psi); |
936 | static u64 erst_writer(enum pstore_type_id type, size_t size, | 936 | static u64 erst_writer(enum pstore_type_id type, int part, size_t size, |
937 | struct pstore_info *psi); | 937 | struct pstore_info *psi); |
938 | static int erst_clearer(u64 id, struct pstore_info *psi); | 938 | static int erst_clearer(enum pstore_type_id type, u64 id, |
939 | struct pstore_info *psi); | ||
939 | 940 | ||
940 | static struct pstore_info erst_info = { | 941 | static struct pstore_info erst_info = { |
941 | .owner = THIS_MODULE, | 942 | .owner = THIS_MODULE, |
@@ -1039,7 +1040,7 @@ out: | |||
1039 | return (rc < 0) ? rc : (len - sizeof(*rcd)); | 1040 | return (rc < 0) ? rc : (len - sizeof(*rcd)); |
1040 | } | 1041 | } |
1041 | 1042 | ||
1042 | static u64 erst_writer(enum pstore_type_id type, size_t size, | 1043 | static u64 erst_writer(enum pstore_type_id type, int part, size_t size, |
1043 | struct pstore_info *psi) | 1044 | struct pstore_info *psi) |
1044 | { | 1045 | { |
1045 | struct cper_pstore_record *rcd = (struct cper_pstore_record *) | 1046 | struct cper_pstore_record *rcd = (struct cper_pstore_record *) |
@@ -1083,7 +1084,8 @@ static u64 erst_writer(enum pstore_type_id type, size_t size, | |||
1083 | return rcd->hdr.record_id; | 1084 | return rcd->hdr.record_id; |
1084 | } | 1085 | } |
1085 | 1086 | ||
1086 | static int erst_clearer(u64 id, struct pstore_info *psi) | 1087 | static int erst_clearer(enum pstore_type_id type, u64 id, |
1088 | struct pstore_info *psi) | ||
1087 | { | 1089 | { |
1088 | return erst_clear(id); | 1090 | return erst_clear(id); |
1089 | } | 1091 | } |