Commit f1061519 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] ppc64: NVRAM fixes

From: Anton Blanchard <anton@samba.org>

We check nvram_fetch/nvram_store against -1, so better not make these
unsigned.
parent 9d0eb0ab
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include <asm/machdep.h> #include <asm/machdep.h>
static unsigned int nvram_size; static unsigned int nvram_size;
static unsigned int nvram_fetch, nvram_store; static int nvram_fetch, nvram_store;
static char nvram_buf[NVRW_CNT]; /* assume this is in the first 4GB */ static char nvram_buf[NVRW_CNT]; /* assume this is in the first 4GB */
static spinlock_t nvram_lock = SPIN_LOCK_UNLOCKED; static spinlock_t nvram_lock = SPIN_LOCK_UNLOCKED;
......
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