diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-28 19:37:35 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-28 19:37:35 -0500 |
commit | 8748dfae379573cdbea4e765b55e608a1764f918 (patch) | |
tree | d67f5c0ddd3a63481b14cd327779eeaf0bc165e9 /drivers/firmware | |
parent | a34815b96f9a21b3a2e2912dfd0d994acd2855e3 (diff) | |
parent | eee628da2ee3cbba6f14696278c92a464239eea6 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux:
efivars: add missing parameter to efi_pstore_read()
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/efivars.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/firmware/efivars.c b/drivers/firmware/efivars.c index a54a6b972ced..b0a81173a268 100644 --- a/drivers/firmware/efivars.c +++ b/drivers/firmware/efivars.c | |||
@@ -581,7 +581,8 @@ static int efi_pstore_close(struct pstore_info *psi) | |||
581 | } | 581 | } |
582 | 582 | ||
583 | static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, | 583 | static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, |
584 | struct timespec *time, struct pstore_info *psi) | 584 | struct timespec *timespec, |
585 | char **buf, struct pstore_info *psi) | ||
585 | { | 586 | { |
586 | return -1; | 587 | return -1; |
587 | } | 588 | } |