From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hanjun Guo Subject: Re: [Linaro-acpi] [PATCH 1/5] ACPI: add in a bad_madt_entry() function to eventually replace the macro Date: Thu, 13 Aug 2015 17:30:36 +0800 Message-ID: <55CC63BC.4080902@linaro.org> References: <1438894770-31163-1-git-send-email-al.stone@linaro.org> <1438894770-31163-2-git-send-email-al.stone@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-pm-owner@vger.kernel.org To: Timur Tabi , Al Stone Cc: linux-acpi@vger.kernel.org, "linux-arm-kernel@lists.infradead.org" , linaro-kernel@lists.linaro.org, linux-ia64@vger.kernel.org, patches@linaro.org, linux-pm@vger.kernel.org, linaro-acpi@lists.linaro.org, "Rafael J. Wysocki" , lkml , Len Brown List-Id: linux-acpi@vger.kernel.org On 08/13/2015 06:35 AM, Timur Tabi wrote: > On Thu, Aug 6, 2015 at 3:59 PM, Al Stone wrote: >> + while (ms->num_types != 0) { >> + if (ms->major_version == major && >> + ms->minor_version == minor && >> + ms->madt_version == madt->header.revision) >> + break; >> + ms++; >> + } >> + if (!ms) { > > Shouldn't this be > > if (!ms->num_types) { > > instead? I think so, but seems nothing to do with the FADT version, Al may explain more about it :) Thanks Hanjun