From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753519Ab2JBPBZ (ORCPT ); Tue, 2 Oct 2012 11:01:25 -0400 Received: from mga09.intel.com ([134.134.136.24]:36740 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751525Ab2JBPBV (ORCPT ); Tue, 2 Oct 2012 11:01:21 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,523,1344236400"; d="scan'208";a="200636964" From: Andy Shevchenko To: Andrew Morton , linux-kernel@vger.kernel.org, Joe Perches Cc: Andy Shevchenko , YAMANE Toshiaki , Greg Kroah-Hartman Subject: [PATCH 3/7] staging: rts_pstor: reuse kbasename() Date: Tue, 2 Oct 2012 18:00:56 +0300 Message-Id: <1349190062-13107-3-git-send-email-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1349190062-13107-1-git-send-email-andriy.shevchenko@linux.intel.com> References: <1349190062-13107-1-git-send-email-andriy.shevchenko@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The custom filename function mostly repeats the kernel's kbasename. This patch simplifies it. The updated filename() will not check for the '\' in the filenames. It seems redundant in Linux. Signed-off-by: Andy Shevchenko Cc: YAMANE Toshiaki Cc: Greg Kroah-Hartman --- drivers/staging/rts_pstor/trace.h | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/drivers/staging/rts_pstor/trace.h b/drivers/staging/rts_pstor/trace.h index cf60a1b..59c5686 100644 --- a/drivers/staging/rts_pstor/trace.h +++ b/drivers/staging/rts_pstor/trace.h @@ -24,26 +24,16 @@ #ifndef __REALTEK_RTSX_TRACE_H #define __REALTEK_RTSX_TRACE_H +#include + #define _MSG_TRACE #ifdef _MSG_TRACE static inline char *filename(char *path) { - char *ptr; - if (path == NULL) return NULL; - - ptr = path; - - while (*ptr != '\0') { - if ((*ptr == '\\') || (*ptr == '/')) - path = ptr + 1; - - ptr++; - } - - return path; + return kbasename(path); } #define TRACE_RET(chip, ret) \ -- 1.7.10.4