From nobody Tue Dec 16 16:55:48 2025 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 922AFCE7AF2 for ; Thu, 28 Sep 2023 03:22:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230105AbjI1DWC (ORCPT ); Wed, 27 Sep 2023 23:22:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56514 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229437AbjI1DWA (ORCPT ); Wed, 27 Sep 2023 23:22:00 -0400 Received: from jari.cn (unknown [218.92.28.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id D3FE094 for ; Wed, 27 Sep 2023 20:21:56 -0700 (PDT) Received: from wangkailong$jari.cn ( [182.148.12.64] ) by ajax-webmail-localhost.localdomain (Coremail) ; Thu, 28 Sep 2023 11:20:37 +0800 (GMT+08:00) X-Originating-IP: [182.148.12.64] Date: Thu, 28 Sep 2023 11:20:37 +0800 (GMT+08:00) X-CM-HeaderCharset: UTF-8 From: "KaiLong Wang" To: terrelln@fb.com Cc: linux-kernel@vger.kernel.org Subject: [PATCH] zstd: Clean up errors in zstd_decompress_block.h X-Priority: 3 X-Mailer: Coremail Webmail Server Version 2023.1-cmXT6 build 20230419(ff23bf83) Copyright (c) 2002-2023 www.mailtech.cn mispb-4e503810-ca60-4ec8-a188-7102c18937cf-zhkzyfz.cn Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Message-ID: <4102ea9a.8ae.18ad9cd7e6d.Coremail.wangkailong@jari.cn> X-Coremail-Locale: zh_CN X-CM-TRANSID: AQAAfwBn+D0F8RRl54G+AA--.638W X-CM-SenderInfo: 5zdqwypdlo00nj6mt2flof0/1tbiAQAIB2UT+K8AFwALsz X-Coremail-Antispam: 1Ur529EdanIXcx71UUUUU7IcSsGvfJ3iIAIbVAYjsxI4VWxJw CS07vEb4IE77IF4wCS07vE1I0E4x80FVAKz4kxMIAIbVAFxVCaYxvI4VCIwcAKzIAtYxBI daVFxhVjvjDU= Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Fix the following errors reported by checkpatch: ERROR: "foo* bar" should be "foo *bar" Signed-off-by: KaiLong Wang --- lib/zstd/decompress/zstd_decompress_block.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/zstd/decompress/zstd_decompress_block.h b/lib/zstd/decompr= ess/zstd_decompress_block.h index 3d2d57a5d25a..f5d89fe89d32 100644 --- a/lib/zstd/decompress/zstd_decompress_block.h +++ b/lib/zstd/decompress/zstd_decompress_block.h @@ -45,9 +45,9 @@ typedef enum { * @return : decompressed block size, * or an error code (which can be tested using ZSTD_isError()) */ -size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, const int frame,= const streaming_operation streaming); +size_t ZSTD_decompressBlock_internal(ZSTD_DCtx *dctx, + void *dst, size_t dstCapacity, + const void *src, size_t srcSize, const int frame,= const streaming_operation streaming); =20 /* ZSTD_buildFSETable() : * generate FSE decoding table for one symbol (ll, ml or off) @@ -58,10 +58,10 @@ size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx, * defined in zstd_decompress_internal.h. * Internal use only. */ -void ZSTD_buildFSETable(ZSTD_seqSymbol* dt, - const short* normalizedCounter, unsigned maxSymbolValue, - const U32* baseValue, const U8* nbAdditionalBits, - unsigned tableLog, void* wksp, size_t wkspSize, +void ZSTD_buildFSETable(ZSTD_seqSymbol *dt, + const short *normalizedCounter, unsigned maxSymbolValue, + const U32 *baseValue, const U8 *nbAdditionalBits, + unsigned tableLog, void *wksp, size_t wkspSize, int bmi2); =20 =20 --=20 2.17.1