mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
powerpc: Compile fixes for chrp/nvram.c
Include asm/rtas.h for prototype for rtas_call etc., and make the `done' variable unsigned int since that's what rtas_call wants. Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
300230dcba
commit
398382999b
@ -17,6 +17,7 @@
|
|||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
#include <asm/prom.h>
|
#include <asm/prom.h>
|
||||||
#include <asm/machdep.h>
|
#include <asm/machdep.h>
|
||||||
|
#include <asm/rtas.h>
|
||||||
#include "chrp.h"
|
#include "chrp.h"
|
||||||
|
|
||||||
static unsigned int nvram_size;
|
static unsigned int nvram_size;
|
||||||
@ -25,7 +26,8 @@ static DEFINE_SPINLOCK(nvram_lock);
|
|||||||
|
|
||||||
static unsigned char chrp_nvram_read(int addr)
|
static unsigned char chrp_nvram_read(int addr)
|
||||||
{
|
{
|
||||||
unsigned long done, flags;
|
unsigned int done;
|
||||||
|
unsigned long flags;
|
||||||
unsigned char ret;
|
unsigned char ret;
|
||||||
|
|
||||||
if (addr >= nvram_size) {
|
if (addr >= nvram_size) {
|
||||||
@ -46,7 +48,8 @@ static unsigned char chrp_nvram_read(int addr)
|
|||||||
|
|
||||||
static void chrp_nvram_write(int addr, unsigned char val)
|
static void chrp_nvram_write(int addr, unsigned char val)
|
||||||
{
|
{
|
||||||
unsigned long done, flags;
|
unsigned int done;
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
if (addr >= nvram_size) {
|
if (addr >= nvram_size) {
|
||||||
printk(KERN_DEBUG "%s: write addr %d > nvram_size %u\n",
|
printk(KERN_DEBUG "%s: write addr %d > nvram_size %u\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user