Commit 69903d65 authored by Thiemo Seufer's avatar Thiemo Seufer Committed by Ralf Baechle

Fix typos and formatting.

Signed-off-by: default avatarThiemo Seufer <ths@networkno.de>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent b59a9504
...@@ -82,7 +82,7 @@ NESTED(except_vec3_r4000, 0, sp) ...@@ -82,7 +82,7 @@ NESTED(except_vec3_r4000, 0, sp)
li k0, 14<<2 li k0, 14<<2
beq k1, k0, handle_vcei beq k1, k0, handle_vcei
#ifdef CONFIG_64BIT #ifdef CONFIG_64BIT
dsll k1, k1, 1 dsll k1, k1, 1
#endif #endif
.set pop .set pop
PTR_L k0, exception_handlers(k1) PTR_L k0, exception_handlers(k1)
...@@ -90,17 +90,17 @@ NESTED(except_vec3_r4000, 0, sp) ...@@ -90,17 +90,17 @@ NESTED(except_vec3_r4000, 0, sp)
/* /*
* Big shit, we now may have two dirty primary cache lines for the same * Big shit, we now may have two dirty primary cache lines for the same
* physical address. We can savely invalidate the line pointed to by * physical address. We can safely invalidate the line pointed to by
* c0_badvaddr because after return from this exception handler the * c0_badvaddr because after return from this exception handler the
* load / store will be re-executed. * load / store will be re-executed.
*/ */
handle_vced: handle_vced:
DMFC0 k0, CP0_BADVADDR MFC0 k0, CP0_BADVADDR
li k1, -4 # Is this ... li k1, -4 # Is this ...
and k0, k1 # ... really needed? and k0, k1 # ... really needed?
mtc0 zero, CP0_TAGLO mtc0 zero, CP0_TAGLO
cache Index_Store_Tag_D,(k0) cache Index_Store_Tag_D, (k0)
cache Hit_Writeback_Inv_SD,(k0) cache Hit_Writeback_Inv_SD, (k0)
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
PTR_LA k0, vced_count PTR_LA k0, vced_count
lw k1, (k0) lw k1, (k0)
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
/* /*
* copy while checksumming, otherwise like csum_partial * copy while checksumming, otherwise like csum_partial
*/ */
unsigned int csum_partial_copy_nocheck(const unsigned char *src, unsigned char *dst, unsigned int csum_partial_copy_nocheck(const unsigned char *src,
int len, unsigned int sum) unsigned char *dst, int len, unsigned int sum)
{ {
/* /*
* It's 2:30 am and I don't feel like doing it real ... * It's 2:30 am and I don't feel like doing it real ...
...@@ -33,8 +33,8 @@ unsigned int csum_partial_copy_nocheck(const unsigned char *src, unsigned char * ...@@ -33,8 +33,8 @@ unsigned int csum_partial_copy_nocheck(const unsigned char *src, unsigned char *
* Copy from userspace and compute checksum. If we catch an exception * Copy from userspace and compute checksum. If we catch an exception
* then zero the rest of the buffer. * then zero the rest of the buffer.
*/ */
unsigned int csum_partial_copy_from_user (const unsigned char *src, unsigned char *dst, unsigned int csum_partial_copy_from_user (const unsigned char *src,
int len, unsigned int sum, int *err_ptr) unsigned char *dst, int len, unsigned int sum, int *err_ptr)
{ {
int missing; int missing;
......
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