Commit f48d1915 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'pstore-efi' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6

* 'pstore-efi' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:
  efivars: fix warnings when CONFIG_PSTORE=n
parents f673b7c2 b728a5c8
...@@ -157,7 +157,7 @@ utf16_strnlen(efi_char16_t *s, size_t maxlength) ...@@ -157,7 +157,7 @@ utf16_strnlen(efi_char16_t *s, size_t maxlength)
return length; return length;
} }
static unsigned long static inline unsigned long
utf16_strlen(efi_char16_t *s) utf16_strlen(efi_char16_t *s)
{ {
return utf16_strnlen(s, ~0UL); return utf16_strnlen(s, ~0UL);
...@@ -580,8 +580,8 @@ static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, ...@@ -580,8 +580,8 @@ static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
return -1; return -1;
} }
static u64 efi_pstore_write(enum pstore_type_id type, int part, size_t size, static u64 efi_pstore_write(enum pstore_type_id type, unsigned int part,
struct pstore_info *psi) size_t size, struct pstore_info *psi)
{ {
return 0; return 0;
} }
......
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