diff options
| author | John David Anglin <dave.anglin@bell.net> | 2013-02-02 23:43:06 +0000 | 
|---|---|---|
| committer | Helge Deller <deller@gmx.de> | 2013-02-20 22:51:21 +0100 | 
| commit | 45b6eff2a60c8bec1254412dfdb36acb0afe04a2 (patch) | |
| tree | 3125f74c03298d21a09f1d3b543d0b87ea9bba5f | |
| parent | 52ab532ea76d30b7e7a7b98021e2e873e83029a5 (diff) | |
parisc: space register variables need to be in native length (unsigned long)
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
| -rw-r--r-- | arch/parisc/kernel/signal.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/parisc/kernel/signal.c b/arch/parisc/kernel/signal.c index fd051705a407..52c85b2f502e 100644 --- a/arch/parisc/kernel/signal.c +++ b/arch/parisc/kernel/signal.c @@ -312,7 +312,7 @@ setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,  #if DEBUG_SIG  	/* Assert that we're flushing in the correct space... */  	{ -		int sid; +		unsigned long sid;  		asm ("mfsp %%sr3,%0" : "=r" (sid));  		DBG(1,"setup_rt_frame: Flushing 64 bytes at space %#x offset %p\n",  		       sid, frame->tramp); | 
