Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753140AbcC0WJx (ORCPT ); Sun, 27 Mar 2016 18:09:53 -0400 Received: from mail1.windriver.com ([147.11.146.13]:62574 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752227AbcC0WJu (ORCPT ); Sun, 27 Mar 2016 18:09:50 -0400 From: Paul Gortmaker To: CC: Paul Gortmaker , Andrzej Hajda , Anton Blanchard , Arnd Bergmann , Benjamin Herrenschmidt , Christian Krafft , Hari Bathini , Michael Ellerman , Nathan Fontenot , Paul Mackerras , "Rafael J. Wysocki" , Viresh Kumar , , Subject: [PATCH 0/3] powerpc: remove unused modular code from non-modular drivers Date: Sun, 27 Mar 2016 18:08:14 -0400 Message-ID: <1459116497-19991-1-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.6.1 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2247 Lines: 54 My ongoing audit looking for non-modular code that needlessly uses modular macros (vs. built-in equivalents) and/or has dead code relating to module unloading that can never be executed led to the creation of these three powerpc related commits. One is of the trivial kind, where we substitute in the non-modular versions that CPP would have put in place anyway, resulting in no actual changes, even at the binary output level. The other two are almost as trivial. In addition to the above, we toss out the __exit function registered by module_exit, since that will never get called for non modular code/drivers. For anyone new to the underlying goal of this cleanup, we are trying to not use module support for code that can never be built as a module since: (1) it is easy to accidentally write unused module_exit and remove code (2) it can be misleading when reading the source, thinking it can be modular when the Makefile and/or Kconfig prohibit it (3) it requires the include of the module.h header file which in turn includes nearly everything else, thus adding to CPP overhead. (4) it gets copied/replicated into other code and spreads like weeds. Build tested on v4.6-rc1 to ensure no silly typos that would break compilation crept in. --- Cc: Andrzej Hajda Cc: Anton Blanchard Cc: Arnd Bergmann Cc: Benjamin Herrenschmidt Cc: Christian Krafft Cc: Hari Bathini Cc: Michael Ellerman Cc: Nathan Fontenot Cc: Paul Mackerras Cc: "Rafael J. Wysocki" Cc: Viresh Kumar Cc: linux-pm@vger.kernel.org Cc: linuxppc-dev@lists.ozlabs.org Paul Gortmaker (3): powerpc: make cell/spu_base.c explicitly non-modular powerpc: make kernel/nvram_64.c explicitly non-modular drivers/cpufreq: make ppc_cbe_cpufreq_pmi driver explicitly non-modular arch/powerpc/kernel/nvram_64.c | 12 +----------- arch/powerpc/platforms/cell/spu_base.c | 7 ++----- drivers/cpufreq/ppc_cbe_cpufreq_pmi.c | 15 ++------------- 3 files changed, 5 insertions(+), 29 deletions(-) -- 2.6.1