From nobody Sat Apr 11 19:55:05 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8DD4FC19F2D for ; Sat, 6 Aug 2022 19:57:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233962AbiHFT5L (ORCPT ); Sat, 6 Aug 2022 15:57:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39198 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233680AbiHFT4c (ORCPT ); Sat, 6 Aug 2022 15:56:32 -0400 Received: from smtp.smtpout.orange.fr (smtp-29.smtpout.orange.fr [80.12.242.29]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5A93C12ADA for ; Sat, 6 Aug 2022 12:56:16 -0700 (PDT) Received: from pop-os.home ([90.11.190.129]) by smtp.orange.fr with ESMTPA id KPuAob2sMGDTnKPuAobw3d; Sat, 06 Aug 2022 21:56:14 +0200 X-ME-Helo: pop-os.home X-ME-Auth: YWZlNiIxYWMyZDliZWIzOTcwYTEyYzlhMmU3ZiQ1M2U2MzfzZDfyZTMxZTBkMTYyNDBjNDJlZmQ3ZQ== X-ME-Date: Sat, 06 Aug 2022 21:56:14 +0200 X-ME-IP: 90.11.190.129 From: Christophe JAILLET To: Diana Craciun , Alex Williamson , Cornelia Huck Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , kvm@vger.kernel.org Subject: [PATCH] vfio/fsl-mc: Fix a typo in a comment Date: Sat, 6 Aug 2022 21:56:13 +0200 Message-Id: <2b65bf8d2b4d940cafbafcede07c23c35f042f5a.1659815764.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" L and S are swapped/ s/VFIO_FLS_MC/VFIO_FSL_MC/ Signed-off-by: Christophe JAILLET Acked-by: Cornelia Huck --- All the dev_ logging functions in the file have the "VFIO_FSL_MC: " prefix. As they are dev_ function, the driver should already be displayed. So, does it make sense or could they be all removed? --- drivers/vfio/fsl-mc/vfio_fsl_mc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/vfio/fsl-mc/vfio_fsl_mc.c b/drivers/vfio/fsl-mc/vfio_f= sl_mc.c index 3feff729f3ce..66d01db1d240 100644 --- a/drivers/vfio/fsl-mc/vfio_fsl_mc.c +++ b/drivers/vfio/fsl-mc/vfio_fsl_mc.c @@ -110,7 +110,7 @@ static void vfio_fsl_mc_close_device(struct vfio_device= *core_vdev) =20 if (WARN_ON(ret)) dev_warn(&mc_cont->dev, - "VFIO_FLS_MC: reset device has failed (%d)\n", ret); + "VFIO_FSL_MC: reset device has failed (%d)\n", ret); =20 vfio_fsl_mc_irqs_cleanup(vdev); =20 --=20 2.34.1