Fix common misspellings
[deliverable/linux.git] / arch / microblaze / lib / memmove.c
index 810fd68775e3e5abc323ab3d3c939b3e770524f4..2146c3752a80bc01dcffd4a00554f9d5d20be1d9 100644 (file)
@@ -83,8 +83,8 @@ void *memmove(void *v_dst, const void *v_src, __kernel_size_t c)
        if (c >= 4) {
                unsigned  value, buf_hold;
 
-               /* Align the destination to a word boundry. */
-               /* This is done in an endian independant manner. */
+               /* Align the destination to a word boundary. */
+               /* This is done in an endian independent manner. */
 
                switch ((unsigned long)dst & 3) {
                case 3:
@@ -193,7 +193,7 @@ void *memmove(void *v_dst, const void *v_src, __kernel_size_t c)
                dst = (void *)i_dst;
        }
 
-       /* simple fast copy, ... unless a cache boundry is crossed */
+       /* simple fast copy, ... unless a cache boundary is crossed */
        /* Finish off any remaining bytes */
        switch (c) {
        case 4:
This page took 0.026638 seconds and 5 git commands to generate.