From nobody Sun May 5 01:28:10 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1568401990; cv=none; d=zoho.com; s=zohoarc; b=hBdLWRA+CkH66vAptFYlS4K1IXcMMz60dMtPACBc1uHip0FWdJ91BQoY3rHFBKlCGRVBOVj8aH38r48NNES1b9WM11VEXV1xFeCYMq6cUiAl0u4F43NmN80eMVoWdbevezJU78S2gGjBOCk5X49yolQ7LNOrkJ5LwWkp6ESd5Ig= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568401990; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=+Z8hHX6IjhY+L6AQFHDZf1HobfShshCBQz9CGjl/OVc=; b=fbc53d8KFA4qqUFNstRYQFYSUmk54rTBlwWcm2z2saQOWvCgk7uZBiFKEsjGsi2arc+hoADl36sF+1IstS7S6h5TD4gSIR4xFxRT/dBJynJvbiGiUQRXUW/wD9x+CJRU6flE9j4sGbFdQHDXh4ZM8L76jVyT/UD31cfxvH2MDbc= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 156840199039377.4433595268988; Fri, 13 Sep 2019 12:13:10 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1i8qz8-0005ls-HR; Fri, 13 Sep 2019 19:11:58 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1i8qz7-0005ln-8N for xen-devel@lists.xenproject.org; Fri, 13 Sep 2019 19:11:57 +0000 Received: from webmail.dornerworks.com (unknown [12.207.209.150]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTP id 5865e28e-d65a-11e9-95b9-12813bfff9fa; Fri, 13 Sep 2019 19:11:56 +0000 (UTC) X-Inumbo-ID: 5865e28e-d65a-11e9-95b9-12813bfff9fa From: Stewart Hildebrand To: Date: Fri, 13 Sep 2019 15:11:47 -0400 Message-ID: <20190913191147.2323-1-stewart.hildebrand@dornerworks.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 X-Originating-IP: [172.27.13.130] X-ClientProxiedBy: Mcbain.dw.local (172.27.1.45) To Mcbain.dw.local (172.27.1.45) X-spam-status: No, score=-2.9 required=4.3 tests=ALL_TRUSTED, BAYES_00, MAILSHELL_SCORE_0_4 X-Spam-Flag: NO Subject: [Xen-devel] [PATCH] xen/arm: platform: additional Raspberry Pi compatible string X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Julien Grall , Stefano Stabellini , Volodymyr Babchuk Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Upstream Linux kernel will use "brcm,bcm2711" as the compatible string for Raspberry Pi 4 [1]. Add this string to our platform compatible list for compatibility with the upstream kernel. [1] https://patchwork.kernel.org/patch/11092621/ Signed-off-by: Stewart Hildebrand --- xen/arch/arm/platforms/brcm-raspberry-pi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xen/arch/arm/platforms/brcm-raspberry-pi.c b/xen/arch/arm/plat= forms/brcm-raspberry-pi.c index e22d2b3184..a95a3db83f 100644 --- a/xen/arch/arm/platforms/brcm-raspberry-pi.c +++ b/xen/arch/arm/platforms/brcm-raspberry-pi.c @@ -21,6 +21,7 @@ =20 static const char *const brcm_bcm2838_dt_compat[] __initconst =3D { + "brcm,bcm2711", "brcm,bcm2838", NULL }; --=20 2.23.0 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel