From patchwork Thu Jul 20 06:16:54 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: sunran001@208suo.com X-Patchwork-Id: 705207 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 D67EBEB64DA for ; Thu, 20 Jul 2023 06:17:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230085AbjGTGRC (ORCPT ); Thu, 20 Jul 2023 02:17:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60672 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229746AbjGTGRA (ORCPT ); Thu, 20 Jul 2023 02:17:00 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E6F071FCB for ; Wed, 19 Jul 2023 23:16:58 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R62X6666FzBRDsG for ; Thu, 20 Jul 2023 14:16:54 +0800 (CST) Authentication-Results: mail.208.org (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=208.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=208.org; h= content-transfer-encoding:content-type:message-id:user-agent :references:in-reply-to:subject:to:from:date:mime-version; s= dkim; t=1689833814; x=1692425815; bh=lJ2z1PnaNM6Y2Mn1zwiU8mdSCQy pr99a1vck88s3bIM=; b=SByFtHhZptFIIvUl2eh07ulhGO/QPCKByzYmD7qqxGe VwhJ9kL1jPg2MQKPDUIHpsNpn4kvrKPYYiWVJQCcLh2h8dxnipuWhUx6GaCBZi5W jIebCLxBwkmh5yPu1scO4JFfJiyBxjlAQzN3QTrss8wDzXUh9W+/+lGTpBwyaC2s CF4ofZ4A3FZV3bzs9+JS1FQ7HTFAs3cWK9g3PtTRw9yIda40qj6LD0IX2206kh+e V/a/ON3unNSqL6fP95Yu4LzXeLy1exuEMp/RVa5R1OL2z8gDcvbpzV+gvGdIezo3 o9hgSCkAUkB/QCuDd07K0f7H4lEcxisGtmzUulSwgWw== X-Virus-Scanned: amavisd-new at mail.208.org Received: from mail.208.org ([127.0.0.1]) by mail.208.org (mail.208.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id P4hd0OxP6zn6 for ; Thu, 20 Jul 2023 14:16:54 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R62X63mFGzBR1P6; Thu, 20 Jul 2023 14:16:54 +0800 (CST) MIME-Version: 1.0 Date: Thu, 20 Jul 2023 14:16:54 +0800 From: sunran001@208suo.com To: hare@suse.com, jejb@linux.ibm.com, martin.petersen@oracle.com Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] scsi: aic7xxx: "foo* bar" should be "foo *bar" In-Reply-To: <20230720061553.2523-1-xujianghui@cdjrlc.com> References: <20230720061553.2523-1-xujianghui@cdjrlc.com> User-Agent: Roundcube Webmail Message-ID: <035e4317991f34f20b8dfec0c574ec0f@208suo.com> X-Sender: sunran001@208suo.com Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org ERROR: "foo* bar" should be "foo *bar" Signed-off-by: Ran Sun --- drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h b/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h index ed3bdd43c297..ec4eae41418a 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h +++ b/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h @@ -65,7 +65,7 @@ typedef enum { RO = 0x01, WO = 0x02, RW = 0x03 -}amode_t; +} amode_t; typedef SLIST_HEAD(symlist, symbol_node) symlist_t; @@ -113,7 +113,7 @@ STAILQ_HEAD(macro_arg_list, macro_arg); struct macro_info { struct macro_arg_list args; int narg; - const char* body; + const char *body; }; typedef struct expression_info {