From patchwork Tue Sep 4 00:42:24 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10586419 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 807A0175A for ; Tue, 4 Sep 2018 00:45:31 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6568A29099 for ; Tue, 4 Sep 2018 00:45:31 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5930F290A4; Tue, 4 Sep 2018 00:45:31 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7513129099 for ; Tue, 4 Sep 2018 00:45:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725967AbeIDFIE (ORCPT ); Tue, 4 Sep 2018 01:08:04 -0400 Received: from conuserg-09.nifty.com ([210.131.2.76]:31383 "EHLO conuserg-09.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725858AbeIDFIE (ORCPT ); Tue, 4 Sep 2018 01:08:04 -0400 Received: from grover.tkatk1.zaq.ne.jp (zaqdadce369.zaq.ne.jp [218.220.227.105]) (authenticated) by conuserg-09.nifty.com with ESMTP id w840idCx006387; Tue, 4 Sep 2018 09:44:39 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com w840idCx006387 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1536021880; bh=aDfplpw6vjsR/6FWFUZnvdWwNAConh/vmkPi5yIhz0c=; h=From:To:Cc:Subject:Date:From; b=TBXjIneK7jXaIxPuTplNgtpXXe/hie6ZL+Q4FPBBPdbQ+kHZ9TYQcEbHROTaY67Ze HbA6ndWCwyIICJwMzLHBNiylNfdNMcP5yr2f3wwJFs342ZSfDDPZZhhS3ZlH4wkmFz likVMs52ALIGjVEN4DrrbYdXXMrtlZy9tJxO9GA3G721VtoFWtHTAV2wURGF3oOiIU UDoL9NXS44sOrKCg5JM7t6o1AFPxX8wi/+uUelOsevAXuyDc2XljbV9tEbuJE/W5Fy rHl6MxFkwBMlEv0+J6YA7xINI2hjyR2O4oAv7S5LvSFJyaAIQsUN8OsjU7d4d9tkRG SPcFr2MRR/j1g== X-Nifty-SrcIP: [218.220.227.105] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Arnd Bergmann , Aaron Wu , Bryan Wu , Robin Getz , Rusty Russell , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH] kallsyms: remove left-over Blackfin code Date: Tue, 4 Sep 2018 09:42:24 +0900 Message-Id: <1536021744-2552-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP These symbols were added by commit 028f042613c3 ("kallsyms: support kernel symbols in Blackfin on-chip memory") for Blackfin. The Blackfin support was removed by commit 4ba66a976072 ("arch: remove blackfin port"). Signed-off-by: Masahiro Yamada --- scripts/kallsyms.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index a9186a9..50af068 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c @@ -48,8 +48,6 @@ static unsigned long long relative_base; static struct addr_range text_ranges[] = { { "_stext", "_etext" }, { "_sinittext", "_einittext" }, - { "_stext_l1", "_etext_l1" }, /* Blackfin on-chip L1 inst SRAM */ - { "_stext_l2", "_etext_l2" }, /* Blackfin on-chip L2 SRAM */ }; #define text_range_text (&text_ranges[0]) #define text_range_inittext (&text_ranges[1])