From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 81F411BDA95; Thu, 30 Jan 2025 14:18:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738246726; cv=none; b=QNA+m65Qc4OK1pIU1tUCG5nK63Dfi2WhOiHztvhKjZSLJ6dvYxkHuRMli9Yxc4nk/RJcTyMAhraNs+93ClVaXtbD5iAe98sNW8QYhMU0sRC4Pnajtewd47gk7D88rPqjp+WbazJLX+BG5hd5q6fViWiUq0c08tv5a+J8/rOfibc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738246726; c=relaxed/simple; bh=cEL7LcKvGab4qV0LOWs6yDYwwkKGFME1QFU3FhQgISg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=j06dat3gc5p+50oYj4bO5PWgJJYVtrBYyNj3WAUqv/g8390xSbcIky6/rmu3U454OIHSLbT/SZq1N1p+3S8osEREP6vpcraiJ/tzRBPET+kkNxsMzTQTW39CgUTAbd5wpyds5/Z8jRk0PKagbqO0PO6Tj4wzvNlmyzVOIqvrP1o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=0+nUmzEB; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="0+nUmzEB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F40CCC4CED2; Thu, 30 Jan 2025 14:18:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1738246726; bh=cEL7LcKvGab4qV0LOWs6yDYwwkKGFME1QFU3FhQgISg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=0+nUmzEB3pCHGLftHMFNzjilXA+5KdK62ILo8SGbzKzagXPfKa776gsvImHRQjA8q iZd3A5NK3nM1uQaUP+vyWtMZvCexNNuROv4syF37QO+0G0ZBsqQAhIOSKhHjJ/sAyL vsk97f0pxAsU+QYnFxFMaXv/h9hv6Uwy3qlvwzvk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hans de Goede , "Rafael J. Wysocki" Subject: [PATCH 5.4 16/91] ACPI: resource: Add Asus Vivobook X1504VAP to irq1_level_low_skip_override[] Date: Thu, 30 Jan 2025 15:00:35 +0100 Message-ID: <20250130140134.312390134@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250130140133.662535583@linuxfoundation.org> References: <20250130140133.662535583@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede commit 66d337fede44dcbab4107d37684af8fcab3d648e upstream. Like the Vivobook X1704VAP the X1504VAP has its keyboard IRQ (1) described as ActiveLow in the DSDT, which the kernel overrides to EdgeHigh which breaks the keyboard. Add the X1504VAP to the irq1_level_low_skip_override[] quirk table to fix this. Closes: https://bugzilla.kernel.org/show_bug.cgi?id=219224 Cc: All applicable Signed-off-by: Hans de Goede Link: https://patch.msgid.link/20241220181352.25974-1-hdegoede@redhat.com Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- drivers/acpi/resource.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -443,6 +443,13 @@ static const struct dmi_system_id asus_l }, }, { + /* Asus Vivobook X1504VAP */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "X1504VAP"), + }, + }, + { /* Asus Vivobook X1704VAP */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),