From patchwork Tue Apr 1 11:21:39 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: shao.mingyin@zte.com.cn X-Patchwork-Id: 14034679 Received: from mxhk.zte.com.cn (mxhk.zte.com.cn [63.216.63.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 98A301F09A1; Tue, 1 Apr 2025 11:21:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=63.216.63.35 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743506521; cv=none; b=Zfs9kyCF3G6GWnZ/BbHljIlDg2oybAMS8YqGLeb+blMwiJ88frN+LaDAKJkIDBwkA8cjrmvxMiu70PrRgcEUeVr4zCc9s7YJebmzHSb21TPiFpNlBunc70dIuoewlvBjqRJjlWGkl8Ei4F7lrvKb6+Fi9ucS/RG5Psa5GfOZjEw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743506521; c=relaxed/simple; bh=cHaN8SO4B2c1NSsrSJnbOuQP90QVINkhPBnrv48jD5o=; h=Date:Message-ID:Mime-Version:From:To:Cc:Subject:Content-Type; b=Yn6it3LDb1kNli4hikN1JTVjwtzTtwiYPIjiQTVqldntLJ4M/yc3peWYelRzuxfVf0TKbh84si4f3dO0X1XDELkJ4bjO4tycZRmjGKgTcF6S+iCWgqlTtV3qFnSbvyPP+A42q3v+g0hZk9hpwtuWB/JNueQgTQ2LXhZE7ajExG4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=zte.com.cn; spf=pass smtp.mailfrom=zte.com.cn; arc=none smtp.client-ip=63.216.63.35 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=zte.com.cn Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=zte.com.cn Received: from mse-fl1.zte.com.cn (unknown [10.5.228.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mxhk.zte.com.cn (FangMail) with ESMTPS id 4ZRlvL137sz5B1L5; Tue, 1 Apr 2025 19:21:50 +0800 (CST) Received: from xaxapp05.zte.com.cn ([10.99.98.109]) by mse-fl1.zte.com.cn with SMTP id 531BLaWB075046; Tue, 1 Apr 2025 19:21:36 +0800 (+08) (envelope-from shao.mingyin@zte.com.cn) Received: from mapi (xaxapp04[null]) by mapi (Zmail) with MAPI id mid32; Tue, 1 Apr 2025 19:21:39 +0800 (CST) Date: Tue, 1 Apr 2025 19:21:39 +0800 (CST) X-Zmail-TransId: 2afb67ebcc43ffffffff9c2-81950 X-Mailer: Zmail v1.0 Message-ID: <20250401192139605xby4g5ak51tei46zArAT8@zte.com.cn> Precedence: bulk X-Mailing-List: linux-block@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 From: To: Cc: , , , , , , , , , , , , Subject: =?utf-8?q?=5BPATCH=5D_block=3A_ps3disk=3A_Use_str=5Fread=5Fwrite=28?= =?utf-8?q?=29_helper?= X-MAIL: mse-fl1.zte.com.cn 531BLaWB075046 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 67EBCC4E.000/4ZRlvL137sz5B1L5 From: Feng Wei Remove hard-coded strings by using the str_read_write() helper. Signed-off-by: Feng Wei Signed-off-by: Shao Mingyin --- drivers/block/ps3disk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/block/ps3disk.c b/drivers/block/ps3disk.c index dc9e4a14b885..b7fe90b6fdef 100644 --- a/drivers/block/ps3disk.c +++ b/drivers/block/ps3disk.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include @@ -233,7 +234,7 @@ static irqreturn_t ps3disk_interrupt(int irq, void *data) op = "flush"; } else { read = !rq_data_dir(req); - op = read ? "read" : "write"; + op = str_read_write(read); } if (status) { dev_dbg(&dev->sbd.core, "%s:%u: %s failed 0x%llx\n", __func__,