From patchwork Wed Mar 13 05:05:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Haojian Zhuang X-Patchwork-Id: 15312 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DDB3E23E2E for ; Wed, 13 Mar 2013 05:07:08 +0000 (UTC) Received: from mail-vb0-f49.google.com (mail-vb0-f49.google.com [209.85.212.49]) by fiordland.canonical.com (Postfix) with ESMTP id 98655A192CF for ; Wed, 13 Mar 2013 05:07:08 +0000 (UTC) Received: by mail-vb0-f49.google.com with SMTP id s24so277479vbi.36 for ; Tue, 12 Mar 2013 22:07:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references:x-gm-message-state; bh=vaflunPuRy89/HeOjJOIInN0ldW4nY1MbbezYQQP8PM=; b=n8eUaeg7cI+Y58p3MH02icxcz/A0yVzmSdKIgTOKc3sm5aYxdVmm1Jy4WXIBxtYxEX QpvDJR3SQZtcnhPZcx6qnJWSw3gqrqpT0YxjDxQLJxSiN9v7r0iY4LQlGDNWhzHeZo9t UyncT3Bc8pNLMR3dn13V+yqnNWYtZ6cFkwr0iyJqeqp1qUYr8QbAgZyG2w9+7Tl+1GHN zhMmj+qFaVKJn1+Mk6Nw/2H92Y8RD07N3A5tnDnqn8B7iqAV8bVtHIF/qv3xS4hiG4DA 5kBPA73W7tbcBdbmWGXuA/l5IZTyFIyuP6Scbp8KkRlNzd9cRCjA1X6RUbAD3+uU22PU Ou6w== X-Received: by 10.52.93.235 with SMTP id cx11mr6443341vdb.51.1363151228007; Tue, 12 Mar 2013 22:07:08 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.127.98 with SMTP id nf2csp1624veb; Tue, 12 Mar 2013 22:07:07 -0700 (PDT) X-Received: by 10.68.134.68 with SMTP id pi4mr42234571pbb.161.1363151226821; Tue, 12 Mar 2013 22:07:06 -0700 (PDT) Received: from mail-da0-x232.google.com (mail-da0-x232.google.com [2607:f8b0:400e:c00::232]) by mx.google.com with ESMTPS id zz10si18696866pbc.334.2013.03.12.22.07.06 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 12 Mar 2013 22:07:06 -0700 (PDT) Received-SPF: neutral (google.com: 2607:f8b0:400e:c00::232 is neither permitted nor denied by best guess record for domain of haojian.zhuang@linaro.org) client-ip=2607:f8b0:400e:c00::232; Authentication-Results: mx.google.com; spf=neutral (google.com: 2607:f8b0:400e:c00::232 is neither permitted nor denied by best guess record for domain of haojian.zhuang@linaro.org) smtp.mail=haojian.zhuang@linaro.org Received: by mail-da0-f50.google.com with SMTP id t1so242205dae.23 for ; Tue, 12 Mar 2013 22:07:06 -0700 (PDT) X-Received: by 10.69.1.70 with SMTP id be6mr44031513pbd.185.1363151225838; Tue, 12 Mar 2013 22:07:05 -0700 (PDT) Received: from localhost.localdomain ([67.198.145.34]) by mx.google.com with ESMTPS id ab1sm27947630pbd.37.2013.03.12.22.07.01 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 12 Mar 2013 22:07:05 -0700 (PDT) From: Haojian Zhuang To: linux@arm.linux.org.uk, linus.walleij@linaro.org, arnd@arndb.de, olof@lixom.net, rob.herring@calxeda.com, linux-arm-kernel@lists.infradead.org, pawel.moll@arm.com, swarren@nvidia.com, john.stultz@linaro.org, tglx@linutronix.de, mturquette@linaro.org Cc: patches@linaro.org, Haojian Zhuang Subject: [PATCH v3 02/11] clocksource: select USE_OF by default Date: Wed, 13 Mar 2013 13:05:33 +0800 Message-Id: <1363151142-32162-3-git-send-email-haojian.zhuang@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1363151142-32162-1-git-send-email-haojian.zhuang@linaro.org> References: <1363151142-32162-1-git-send-email-haojian.zhuang@linaro.org> X-Gm-Message-State: ALoCoQnocbxmKMm3OAll1hnl2MVJ5oYgPfKHzxBFjm2U9soR17wgX5i4qZ0CNorzvNAxnsAGZj/H Since clksrc_of driver is always used in DT mode, select CONFIG_USE_OF by default. It could avoid build issue. Signed-off-by: Haojian Zhuang --- drivers/clocksource/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig index 4c04d19..167ed92 100644 --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig @@ -1,4 +1,5 @@ config CLKSRC_OF + select USE_OF bool config CLKSRC_I8253