Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fa09187c34e0d8c8337268a757cff942192131b1
Commit:     fa09187c34e0d8c8337268a757cff942192131b1
Parent:     33202349eff1f90a593924a61291e5466306ab8e
Author:     Roel Kluin <[EMAIL PROTECTED]>
AuthorDate: Fri Nov 2 19:59:05 2007 +0100
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Jan 29 10:14:56 2008 +0000

    [MIPS] ARC: Use strchr instead of strstr.
    
    Use strchr instead of strstr when searching for a single character
    
    Signed-off-by: Roel Kluin <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/fw/arc/cmdline.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/fw/arc/cmdline.c b/arch/mips/fw/arc/cmdline.c
index fd604ef..4ca4eef 100644
--- a/arch/mips/fw/arc/cmdline.c
+++ b/arch/mips/fw/arc/cmdline.c
@@ -52,7 +52,7 @@ static char * __init move_firmware_args(char* cp)
                                strcat(cp, used_arc[i][1]);
                                cp += strlen(used_arc[i][1]);
                                /* ... and now the argument */
-                               s = strstr(prom_argv(actr), "=");
+                               s = strchr(prom_argv(actr), '=');
                                if (s) {
                                        s++;
                                        strcpy(cp, s);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to