lkml.org 
[lkml]   [2020]   [Dec]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[RFC PATCH v1 09/12] mips: Replace strstarts() by str_has_prefix().
    Date
    From: Francis Laniel <laniel_francis@privacyrequired.com>

    The two functions indicates if a string begins with a given prefix.
    The only difference is that strstarts() returns a bool while str_has_prefix()
    returns the length of the prefix if the string begins with it or 0 otherwise.

    Signed-off-by: Francis Laniel <laniel_francis@privacyrequired.com>
    ---
    arch/mips/bcm63xx/boards/board_bcm963xx.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/arch/mips/bcm63xx/boards/board_bcm963xx.c b/arch/mips/bcm63xx/boards/board_bcm963xx.c
    index 01aff80a5967..85ccb2b02621 100644
    --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
    +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
    @@ -747,7 +747,7 @@ void __init board_prom_init(void)

    /* dump cfe version */
    cfe = boot_addr + BCM963XX_CFE_VERSION_OFFSET;
    - if (strstarts(cfe, "cfe-")) {
    + if (str_has_prefix(cfe, "cfe-")) {
    if(cfe[4] == 'v') {
    if(cfe[5] == 'd')
    snprintf(cfe_version, 11, "%s",
    --
    2.20.1
    \
     
     \ /
      Last update: 2020-12-04 18:09    [W:2.352 / U:0.004 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site