Commit e2693ec1 authored by Rolf Eike Beer's avatar Rolf Eike Beer Committed by Helge Deller
Browse files

parisc: make the log level string for register dumps const

parent e72b23de
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ static int printbinary(char *buf, unsigned long x, int nbits)
		lvl, f, (x), (x+3), (r)[(x)+0], (r)[(x)+1],		\
		(r)[(x)+2], (r)[(x)+3])

static void print_gr(char *level, struct pt_regs *regs)
static void print_gr(const char *level, struct pt_regs *regs)
{
	int i;
	char buf[64];
@@ -89,7 +89,7 @@ static void print_gr(char *level, struct pt_regs *regs)
		PRINTREGS(level, regs->gr, "r", RFMT, i);
}

static void print_fr(char *level, struct pt_regs *regs)
static void print_fr(const char *level, struct pt_regs *regs)
{
	int i;
	char buf[64];
@@ -119,7 +119,7 @@ static void print_fr(char *level, struct pt_regs *regs)
void show_regs(struct pt_regs *regs)
{
	int i, user;
	char *level;
	const char *level;
	unsigned long cr30, cr31;

	user = user_mode(regs);