From patchwork Fri Mar 22 13:47:39 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 1061210 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=konsulko.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44QlNF1nWhz9sR4 for ; Sat, 23 Mar 2019 00:47:55 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 6F061C221F0; Fri, 22 Mar 2019 13:47:50 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 9F7D7C22193; Fri, 22 Mar 2019 13:47:48 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 1F87AC22193; Fri, 22 Mar 2019 13:47:47 +0000 (UTC) Received: from mail-ed1-f66.google.com (mail-ed1-f66.google.com [209.85.208.66]) by lists.denx.de (Postfix) with ESMTPS id 9D462C220EF for ; Fri, 22 Mar 2019 13:47:46 +0000 (UTC) Received: by mail-ed1-f66.google.com with SMTP id q3so1759047edg.0 for ; Fri, 22 Mar 2019 06:47:46 -0700 (PDT) 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=3AoIuWi8y1uV5anlIuZnAwYMYotDb+cp4jC0159y3j4=; b=j+pS6fMZrsAaYMUe2oTCySiVkflo94rw6/S+K7w0F5noocDhVWqWtioND37n725W3j fWJKi7vQR96Vb1IWWaQczikAB6ZpeObFEvJlbAoY9O6PnYHk3oZQib2Myam/shY2dBCO KEnKCCu3VLn8IrpMn7oelGS8Cn7GtiO5q6NgTAnhsNxBQLHBCMfMSm7O1KY6RJOAuWlW pTPKPOHms9vRT3tkn6GzRFdg1KknVJ0GBpWfoG+6/bilw3h1vhzve97SVY7xuf11tRLD Xyx4Qrwchv2/z1DILJ7EKS8rhtOrhIEe6lQNlQU5GR28m8tdNbYVCNWtqDoCOdBmVF17 k1Zg== X-Gm-Message-State: APjAAAWsnVsd8aCkMuoKcTOpcXdS716gssqkvZc7mM7qMwUspKA/s9M0 HEAHnjM3j93ddF62nwpJm02duqM= X-Google-Smtp-Source: APXvYqw7BSRdM5I/lyH3QD0F6SL9j3RE/3SdCB/4J9kwrWrQKuUiGvyzG7/Us5JN+TLvFQDd7FiTXQ== X-Received: by 2002:a50:ec89:: with SMTP id e9mr6695332edr.252.1553262465940; Fri, 22 Mar 2019 06:47:45 -0700 (PDT) Received: from bill-the-cat.local (cpe-65-184-134-105.ec.res.rr.com. [65.184.134.105]) by smtp.gmail.com with ESMTPSA id a58sm2562093eda.91.2019.03.22.06.47.44 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 22 Mar 2019 06:47:45 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Fri, 22 Mar 2019 09:47:39 -0400 Message-Id: <1553262459-4165-1-git-send-email-trini@konsulko.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] scripts/Makefile.extrawarn: Silence more DTC warnings X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" While our "extrawarns" logic has gotten out of sync with upstream Kbuild, for now lets start by bringing in the latest set of DTC_FLAGS from the Linux Kernel 5.0 to match their behavior in silencing warnings from dtc. Cc: Masahiro Yamada Signed-off-by: Tom Rini --- scripts/Makefile.extrawarn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/Makefile.extrawarn b/scripts/Makefile.extrawarn index 7ed520f55503..1105c76be12f 100644 --- a/scripts/Makefile.extrawarn +++ b/scripts/Makefile.extrawarn @@ -74,5 +74,7 @@ DTC_FLAGS += -Wno-unit_address_format DTC_FLAGS += -Wno-pci_bridge DTC_FLAGS += -Wno-pci_device_bus_num DTC_FLAGS += -Wno-pci_device_reg +DTC_FLAGS += -Wno-avoid_unnecessary_addr_size +DTC_FLAGS += -Wno-alias_paths endif