From patchwork Wed Aug 13 00:11:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 4715461 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id BB779C0338 for ; Wed, 13 Aug 2014 00:11:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D2D9F20173 for ; Wed, 13 Aug 2014 00:11:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F37E320160 for ; Wed, 13 Aug 2014 00:11:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752583AbaHMALJ (ORCPT ); Tue, 12 Aug 2014 20:11:09 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:33759 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752423AbaHMALI (ORCPT ); Tue, 12 Aug 2014 20:11:08 -0400 Received: by mail-pa0-f51.google.com with SMTP id ey11so13942668pad.10 for ; Tue, 12 Aug 2014 17:11:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=kfkqvWih7PkFaHZ3QDx5ib3EVxzp6dKxcbQ/7Hpjpkw=; b=Ba16LJAPRVQDG/E5MCQBwHfF/XyIYG7cd+l5pEhUTWNjsgmWwENtKhT9Li4jsbixyR m6lcO65n4GbTY7cjA15ZopgqnJ1zHCzjKKPBOJ/R7r46HOYdg+TR74Jem++Eyj6hwUkv 5FPIjFz2csFlF37G15Pp4QTDXntTi/qmpLEA22GFF8GhJOWx4hnYwn6d3c6bsfBWLxC0 +5f9DNVIpGjXWxGMf9fhiMrW/kS22Prfs4fbaeJuGSVPXAIZMJ7lnnMzDWKyh+FawSEv q1nrNbHkDhVWrVOAV/90iSPD2BP+a6qu3yGomuMotcsia8YwS/s5rejEMUjgIjOwyVeR k/iQ== X-Gm-Message-State: ALoCoQldfJyGjiBcz9Nh12iT4Xo7HmUadIUr+RmtZOlFsFc6PiBOReI6Iv5PjeJsUMC94YOwOaOZ X-Received: by 10.70.16.196 with SMTP id i4mr815795pdd.93.1407888667617; Tue, 12 Aug 2014 17:11:07 -0700 (PDT) Received: from localhost (c-67-183-17-239.hsd1.wa.comcast.net. [67.183.17.239]) by mx.google.com with ESMTPSA id mb6sm262794pdb.96.2014.08.12.17.11.06 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 12 Aug 2014 17:11:07 -0700 (PDT) From: Kevin Hilman To: daniel.lezcano@linaro.org Cc: t.figa@samsung.com, k.chander@samsung.com, kgene.kim@samsung.com, linaro-kernel@lists.linaro.org, "Rafael J. Wysocki" , Lorenzo Pieralisi , linux-pm@vger.kernel.org (open list:CPUIDLE DRIVERS), linux-arm-kernel@lists.infradead.org (open list:CPUIDLE DRIVER -...), linux-kernel@vger.kernel.org (open list) Subject: [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string Date: Tue, 12 Aug 2014 17:11:05 -0700 Message-Id: <1407888665-24603-1-git-send-email-khilman@linaro.org> X-Mailer: git-send-email 1.9.2 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Exynos 5800 is big.LITTLE SoC compatible with the 5420. Add the compatible string so this driver works on the 5800. Tested on exynos5800-peach-pi (aka Samsung Chromebook2) Signed-off-by: Kevin Hilman --- drivers/cpuidle/cpuidle-big_little.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpuidle/cpuidle-big_little.c b/drivers/cpuidle/cpuidle-big_little.c index 0a1f827308db..bf3ab66fdaaf 100644 --- a/drivers/cpuidle/cpuidle-big_little.c +++ b/drivers/cpuidle/cpuidle-big_little.c @@ -166,6 +166,7 @@ static int __init bl_idle_driver_init(struct cpuidle_driver *drv, int match_id) static const struct of_device_id compatible_machine_match[] = { { .compatible = "arm,vexpress,v2p-ca15_a7" }, { .compatible = "samsung,exynos5420" }, + { .compatible = "samsung,exynos5800" }, {}, };