diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-25 11:30:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-25 11:30:35 -0400 |
commit | 4b7eba49c5912cbd7c70bbebec38d8cd54c2ef85 (patch) | |
tree | 99cc41c06ade46f9925268728417c9529ce5041e /arch/cris/arch-v32 | |
parent | 92bf3d09410531a06e06504957271e3978f937e2 (diff) | |
parent | 7b91747d42a1012e3781dd09fa638d113809e3fd (diff) |
Merge tag 'cris-for-linus' of git://jni.nu/cris
Pull CRIS changes from Jesper Nilsson:
"No major changes here, but fixes some compile errors for CRIS, some
small style issues, some documentation and as a bonus nukes a couple
of obsolete rtc-files and related code."
* tag 'cris-for-linus' of git://jni.nu/cris:
cris: Remove old legacy "-traditional" flag from arch-v10/lib/Makefile
CRIS: Remove legacy RTC drivers
cris/mm/fault.c: Port OOM changes to do_page_fault
cris:fix the wrong function declear
CRIS: Add _sdata to vmlinux.lds.S
cris: posix_types.h, include asm-generic/posix_types.h
CRIS: Update documentation
cris/arch-v32: cryptocop: Use kzalloc
net:removed the unused variable
cris:removed the unused variable
CRISv32: Correct name of read_mostly section.
Diffstat (limited to 'arch/cris/arch-v32')
-rw-r--r-- | arch/cris/arch-v32/drivers/cryptocop.c | 6 | ||||
-rw-r--r-- | arch/cris/arch-v32/kernel/ptrace.c | 2 | ||||
-rw-r--r-- | arch/cris/arch-v32/kernel/time.c | 7 |
3 files changed, 2 insertions, 13 deletions
diff --git a/arch/cris/arch-v32/drivers/cryptocop.c b/arch/cris/arch-v32/drivers/cryptocop.c index 642c6fed43d7..f8476d9e856b 100644 --- a/arch/cris/arch-v32/drivers/cryptocop.c +++ b/arch/cris/arch-v32/drivers/cryptocop.c | |||
@@ -1394,11 +1394,10 @@ static int create_md5_pad(int alloc_flag, unsigned long long hashed_length, char | |||
1394 | 1394 | ||
1395 | if (padlen < MD5_MIN_PAD_LENGTH) padlen += MD5_BLOCK_LENGTH; | 1395 | if (padlen < MD5_MIN_PAD_LENGTH) padlen += MD5_BLOCK_LENGTH; |
1396 | 1396 | ||
1397 | p = kmalloc(padlen, alloc_flag); | 1397 | p = kzalloc(padlen, alloc_flag); |
1398 | if (!p) return -ENOMEM; | 1398 | if (!p) return -ENOMEM; |
1399 | 1399 | ||
1400 | *p = 0x80; | 1400 | *p = 0x80; |
1401 | memset(p+1, 0, padlen - 1); | ||
1402 | 1401 | ||
1403 | DEBUG(printk("create_md5_pad: hashed_length=%lld bits == %lld bytes\n", bit_length, hashed_length)); | 1402 | DEBUG(printk("create_md5_pad: hashed_length=%lld bits == %lld bytes\n", bit_length, hashed_length)); |
1404 | 1403 | ||
@@ -1426,11 +1425,10 @@ static int create_sha1_pad(int alloc_flag, unsigned long long hashed_length, cha | |||
1426 | 1425 | ||
1427 | if (padlen < SHA1_MIN_PAD_LENGTH) padlen += SHA1_BLOCK_LENGTH; | 1426 | if (padlen < SHA1_MIN_PAD_LENGTH) padlen += SHA1_BLOCK_LENGTH; |
1428 | 1427 | ||
1429 | p = kmalloc(padlen, alloc_flag); | 1428 | p = kzalloc(padlen, alloc_flag); |
1430 | if (!p) return -ENOMEM; | 1429 | if (!p) return -ENOMEM; |
1431 | 1430 | ||
1432 | *p = 0x80; | 1431 | *p = 0x80; |
1433 | memset(p+1, 0, padlen - 1); | ||
1434 | 1432 | ||
1435 | DEBUG(printk("create_sha1_pad: hashed_length=%lld bits == %lld bytes\n", bit_length, hashed_length)); | 1433 | DEBUG(printk("create_sha1_pad: hashed_length=%lld bits == %lld bytes\n", bit_length, hashed_length)); |
1436 | 1434 | ||
diff --git a/arch/cris/arch-v32/kernel/ptrace.c b/arch/cris/arch-v32/kernel/ptrace.c index f7ad9e8637df..f085229cf870 100644 --- a/arch/cris/arch-v32/kernel/ptrace.c +++ b/arch/cris/arch-v32/kernel/ptrace.c | |||
@@ -114,8 +114,6 @@ void user_disable_single_step(struct task_struct *child) | |||
114 | void | 114 | void |
115 | ptrace_disable(struct task_struct *child) | 115 | ptrace_disable(struct task_struct *child) |
116 | { | 116 | { |
117 | unsigned long tmp; | ||
118 | |||
119 | /* Deconfigure SPC and S-bit. */ | 117 | /* Deconfigure SPC and S-bit. */ |
120 | user_disable_single_step(child); | 118 | user_disable_single_step(child); |
121 | put_reg(child, PT_SPC, 0); | 119 | put_reg(child, PT_SPC, 0); |
diff --git a/arch/cris/arch-v32/kernel/time.c b/arch/cris/arch-v32/kernel/time.c index 6773fc83a670..8c4b45efd7b6 100644 --- a/arch/cris/arch-v32/kernel/time.c +++ b/arch/cris/arch-v32/kernel/time.c | |||
@@ -18,7 +18,6 @@ | |||
18 | #include <asm/signal.h> | 18 | #include <asm/signal.h> |
19 | #include <asm/io.h> | 19 | #include <asm/io.h> |
20 | #include <asm/delay.h> | 20 | #include <asm/delay.h> |
21 | #include <asm/rtc.h> | ||
22 | #include <asm/irq.h> | 21 | #include <asm/irq.h> |
23 | #include <asm/irq_regs.h> | 22 | #include <asm/irq_regs.h> |
24 | 23 | ||
@@ -67,7 +66,6 @@ unsigned long timer_regs[NR_CPUS] = | |||
67 | }; | 66 | }; |
68 | 67 | ||
69 | extern int set_rtc_mmss(unsigned long nowtime); | 68 | extern int set_rtc_mmss(unsigned long nowtime); |
70 | extern int have_rtc; | ||
71 | 69 | ||
72 | #ifdef CONFIG_CPU_FREQ | 70 | #ifdef CONFIG_CPU_FREQ |
73 | static int | 71 | static int |
@@ -265,11 +263,6 @@ void __init time_init(void) | |||
265 | */ | 263 | */ |
266 | loops_per_usec = 50; | 264 | loops_per_usec = 50; |
267 | 265 | ||
268 | if(RTC_INIT() < 0) | ||
269 | have_rtc = 0; | ||
270 | else | ||
271 | have_rtc = 1; | ||
272 | |||
273 | /* Start CPU local timer. */ | 266 | /* Start CPU local timer. */ |
274 | cris_timer_init(); | 267 | cris_timer_init(); |
275 | 268 | ||