From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id BF0D630CDBE; Thu, 4 Sep 2025 17:28:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757006917; cv=none; b=mosZ3ssz5uyu4+T2BejiVccI5Jfw+2sknQ1AYcs535Elx+UHxRgoHmER/DB5NTX4wxO5hrepDiO9KmfijY4HF4+FVKA4ae9WV9QLQ0+wRKy2D3/64RHrXrTPeHJ+dxpce3feHYq2hRQqYbQ5DsqothO2HsJYFhVMg/qZ/X9PSSs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757006917; c=relaxed/simple; bh=Z7YC0f/6mF0zUtmtDn2Q17ZKP1H+legn4v36pcS41uo=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=SWQWWji8LDUqkm/pZ5++L0ja+oWMmn4gQxjB8j941KHbSPVWOQ/YAZGNuC2NLWD8mUGFpSopVgajdn+i3Y8VBYp0ms0Yx0PNnDylw9d3zFzvaFHCZDCblh0YCUqn7ujjyypL0Ck2G6s5kfSwumPutsfOlRxOEMDTFx8yOMt2tF0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B514D2E98; Thu, 4 Sep 2025 10:28:26 -0700 (PDT) Received: from [10.1.196.42] (eglon.cambridge.arm.com [10.1.196.42]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 773093F6A8; Thu, 4 Sep 2025 10:28:29 -0700 (PDT) Message-ID: Date: Thu, 4 Sep 2025 18:28:21 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 08/33] ACPI / MPAM: Parse the MPAM table To: Markus Elfring , linux-arm-kernel@lists.infradead.org, linux-acpi@vger.kernel.org, devicetree@vger.kernel.org Cc: LKML , Amit Singh Tomar , Baisheng Gao , Baolin Wang , bobo.shaobowang@huawei.com, Carl Worth , Catalin Marinas , Conor Dooley , Danilo Krummrich , Dave Martin , David Hildenbrand , Drew Fustini , D Scott Phillips , Fenghua Yu , Greg Kroah-Hartman , Hanjun Guo , Jamie Iles , Jonathan Cameron , Koba Ko , Krzysztof Kozlowski , Len Brown , Linu Cherian , Lorenzo Pieralisi , Peter Newman , "Rafael J. Wysocki" , Rex Nie , Rob Herring , Rohit Mathew , Shameer Kolothum , Shanker Donthineni , Shaopeng Tan , Sudeep Holla , Will Deacon , Xin Hao References: <20250822153048.2287-9-james.morse@arm.com> <60b72fd4-0a63-44ff-9850-1848d3fe9559@web.de> Content-Language: en-GB From: James Morse In-Reply-To: <60b72fd4-0a63-44ff-9850-1848d3fe9559@web.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hi Markus, On 23/08/2025 11:55, Markus Elfring wrote: > … >> +++ b/drivers/acpi/arm64/mpam.c >> @@ -0,0 +1,331 @@ > … >> +static int __init acpi_mpam_parse(void) >> +{ >> + struct acpi_table_header *table __free(acpi_table) = acpi_get_table_ret(ACPI_SIG_MPAM, 0); >> + char *table_end, *table_offset = (char *)(table + 1); > … > > Please replace eight space characters by a tab character here. > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/coding-style.rst?h=v6.17-rc2#n18 > > Are further source code places similarly improvable? Yes - I just copied this rune from the email from Jonathan that suggested it. 'Fixed', Thanks, James