From patchwork Fri Dec 28 22:17:24 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Larry Finger X-Patchwork-Id: 1917681 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 66683DF25A for ; Fri, 28 Dec 2012 22:17:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753981Ab2L1WR3 (ORCPT ); Fri, 28 Dec 2012 17:17:29 -0500 Received: from mail-pa0-f41.google.com ([209.85.220.41]:39580 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753816Ab2L1WR1 (ORCPT ); Fri, 28 Dec 2012 17:17:27 -0500 Received: by mail-pa0-f41.google.com with SMTP id bj3so6285399pad.28 for ; Fri, 28 Dec 2012 14:17:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:message-id:date:from:user-agent:mime-version:to :cc:subject:content-type:content-transfer-encoding; bh=vMvUG2rHlaTwqicABW4On7xlTEc1tvtl2Dpoh/jGNtI=; b=yU6iUVc9YLJHy++9zIBZcSftIuzt7gAXTrelzl16qNS33Ay8F7toCCq3jiZ5txZeAp kQ+B7+It3/maCSIKirV5ZmBUf2OlzGFhQOKD240myomaM1wFXuvMxkgAtZZnyCXWJuqs 8rxbtySqHOwrlgVQ38UdpsWgmQhHWXWnQ4t1dYCSqV/J7oMBwGXKIbHktd2cToScr2RQ epeCk5gHrnDw+XMsmZs3WLvelo4RfzRD7QNuKC+oDAwPSmCaZlNugMo59A+xgx9ffkSI CZ0XhrrlHvpGs/ZAbZf6ccvDS4q0hHYXTLJqhuCJSQayK2ABRHRRFT3F9DkKz1+a6t7Q 8o0g== X-Received: by 10.68.243.33 with SMTP id wv1mr102554917pbc.143.1356733047328; Fri, 28 Dec 2012 14:17:27 -0800 (PST) Received: from larrylap.site (CPE-75-81-36-228.kc.res.rr.com. [75.81.36.228]) by mx.google.com with ESMTPS id uk9sm20307822pbc.63.2012.12.28.14.17.25 (version=SSLv3 cipher=OTHER); Fri, 28 Dec 2012 14:17:26 -0800 (PST) Message-ID: <50DE1A74.4040607@lwfinger.net> Date: Fri, 28 Dec 2012 16:17:24 -0600 From: Larry Finger User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: viresh kumar , "Rafael J. Wysocki" CC: cpufreq@vger.kernel.org, Linux PM list , LKML Subject: [PATCH] Fix problem with cpufreq_pndemand or cpufreq_conservative Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Since commit 2aacdff entitled "cpufreq: Move common part from governors to separate file", whenever the drivers that depend on this new file (cpufreq_ondemand or cpufreq_conservative) are built as modules, a new module named cpufreq_governor is created. It seems that kmake is smart enough to create a separate module whenever more than one module includes the same object file. As drivers/cpufreq/cpufreq_governor.c contains no MODULE directives, the resulting module has no license specified, which results in logging of a "module license 'unspecified' taints kernel". In addition, a number of globals are exported GPL only, and are therefore not available. Signed-off-by: Larry Finger --- This particular patch is the simplest possible; however, it hides the intent. I have prepared the longer version that makes the reason clearer by adding a new configuration variable that is dependent on the other two, and rearranges drivers/cpufreq/Makefile. That version could be submitted if that is what is desired. The changes to cpufreq_governor.c are the same as in this version. Larry cpufreq_governor.c | 5 +++++ 1 file changed, 5 insertions(+) --- -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: wireless-testing-new/drivers/cpufreq/cpufreq_governor.c =================================================================== --- wireless-testing-new.orig/drivers/cpufreq/cpufreq_governor.c +++ wireless-testing-new/drivers/cpufreq/cpufreq_governor.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "cpufreq_governor.h" @@ -316,3 +317,7 @@ second_time: return 0; } EXPORT_SYMBOL_GPL(cpufreq_governor_dbs); +MODULE_AUTHOR("Alexander Clouter "); +MODULE_DESCRIPTION("'cpufreq_governor' - A mini-module containing " + "common code for cpufreq_conservative and cpufreq_ondemand"); +MODULE_LICENSE("GPL");