From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4864:20::644; helo=mail-pl1-x644.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-pl1-x644.google.com (mail-pl1-x644.google.com [IPv6:2607:f8b0:4864:20::644]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id C0C2121A07A92 for ; Mon, 19 Nov 2018 08:47:13 -0800 (PST) Received: by mail-pl1-x644.google.com with SMTP id a14so10249311plm.12 for ; Mon, 19 Nov 2018 08:47:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=iRhQTmIF6mSuvMmPVaXu+W20XnjRuPIywt4rK6OwhoI=; b=Lf8Tda1oH6m2izE7skvvfwIC3/vclwE9f85wA5BXK9BZuHG2+uUUcG/vjSzMDmEM+4 IsSIrlEAiPaXlymsYg50ykPVB55oqPxWhrhuLJQ+K7n9U1USGKu74AuTi3F5QZuhHltq st2RqzgYMml382dzcnP3CD4rC7M21KqoNJ3UU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=iRhQTmIF6mSuvMmPVaXu+W20XnjRuPIywt4rK6OwhoI=; b=ljG2Xe5prDlomug6+0cGSxP/HSuJMTziObMAK9pzq0EAEREBk6gtr/upvX5TINzx0b aH3hOcVfjM0oPtZS5q0+U+l8pU5qE4idgcEmaBFHdn/47fixPsCEgk0aAZzhgXW/hkW1 hxbn/Du+BNLlRlyofRZ1x5uqpJ1Htm+6GCbZ4WFtHPo+iStzfRUbKbNhp3CGHqLRCdDX vXBgKsMvWWDSBktHhR9oRq2+mNQ3IyqC5D4kHh5fANvijN5XkCsjQruhnT249Kg0D5el 1UV/0g6VyojUQk6s7F0xDdclr+TN2Y5YiCx1/O/2LqpLv5OAs0KzsIxrbYH7Qebu+q/D tGUQ== X-Gm-Message-State: AGRZ1gK2BQ5kKhekM/faiMpkatjONU5mSzdhep+8B1k+ZVDn3bUoChLk eDdk3p//DLagDS065W8BzxsoqmyvZ/qVHA== X-Google-Smtp-Source: AJdET5eA7ZL+zw0FzAIZRmUiwd5E12P9JBc779eBlWM0AcAs+qGpNiUxq9oxYaEWF1juZnwTwXEuWw== X-Received: by 2002:a17:902:e290:: with SMTP id cf16mr19779963plb.81.1542646032827; Mon, 19 Nov 2018 08:47:12 -0800 (PST) Received: from mba13.psav.com ([64.114.255.97]) by smtp.gmail.com with ESMTPSA id k26sm41287488pgf.65.2018.11.19.08.47.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 19 Nov 2018 08:47:11 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Date: Mon, 19 Nov 2018 08:03:38 -0800 Message-Id: <20181119160338.5774-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 Subject: [PATCH] Silicon/SynQuacer: remove bogus PL011 _HID from DSDT ACPI table X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Nov 2018 16:47:13 -0000 PL011 is not a valid ACPI identifier so don't expose it as a _CID. Since _CID (Comptable ID) is optional, let's just drop it. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- Silicon/Socionext/SynQuacer/AcpiTables/Dsdt.asl | 1 - 1 file changed, 1 deletion(-) diff --git a/Silicon/Socionext/SynQuacer/AcpiTables/Dsdt.asl b/Silicon/Socionext/SynQuacer/AcpiTables/Dsdt.asl index 3f73c191d4d6..7c7677f1fea0 100644 --- a/Silicon/Socionext/SynQuacer/AcpiTables/Dsdt.asl +++ b/Silicon/Socionext/SynQuacer/AcpiTables/Dsdt.asl @@ -135,7 +135,6 @@ DefinitionBlock ("DsdtTable.aml", "DSDT", 1, "SNI", "SYNQUACR", // UART PL011 Device (COM0) { Name (_HID, "ARMH0011") - Name (_CID, "PL011") Name (_UID, Zero) Name (_CRS, ResourceTemplate () { Memory32Fixed (ReadWrite, FixedPcdGet32 (PcdSerialRegisterBase), 0x1000) -- 2.17.1