From patchwork Thu Apr 18 11:37:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2460191 X-Patchwork-Delegate: rui.zhang@intel.com Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 861883FCA5 for ; Thu, 18 Apr 2013 11:50:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967208Ab3DRLuX (ORCPT ); Thu, 18 Apr 2013 07:50:23 -0400 Received: from mail-da0-f51.google.com ([209.85.210.51]:41934 "EHLO mail-da0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S967170Ab3DRLuX (ORCPT ); Thu, 18 Apr 2013 07:50:23 -0400 Received: by mail-da0-f51.google.com with SMTP id g27so1324868dan.10 for ; Thu, 18 Apr 2013 04:50:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=/kRkrhSIsWaC1BSlvcnI7DPhJ93BMoPVnhAlXFuLEz4=; b=bgjxpQOxNkvqLQVaaDVp3/SXXn4RqHe+ThoFRWawygLxrfvocPvCGHog6E8cdyW16E 8bamoIOb/+tN59knj3R7D92ETLJPfiuDVGLXJufI8xX5PiDxHbYvcBFD2RGRhklWPwj0 Yw+sM/DWr7TOMLztq4OKajlEASfxBNTySP73wXXFW2SfXGajFrgaqQFmYZfYCauTqARt V9EWkia3tFAXITbiObGkPvxxkH1RqQPXYxuUnUOSjtNiRP1nQRQR219R5+9FctOTyHXq AXOqH0CvbA55rLOKEu8poVjrVGR+0cBIxId1nQrN2SxrS8HmxOzuTLThME0piRdH8KTH kgig== X-Received: by 10.68.20.138 with SMTP id n10mr13375553pbe.140.1366285822396; Thu, 18 Apr 2013 04:50:22 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPS id mm9sm9619055pbc.43.2013.04.18.04.50.18 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 18 Apr 2013 04:50:22 -0700 (PDT) From: Sachin Kamat To: linux-pm@vger.kernel.org Cc: rui.zhang@intel.com, eduardo.valentin@ti.com, sachin.kamat@linaro.org, kgene.kim@samsung.com, patches@linaro.org, Amit Daniel Kachhap Subject: [PATCH 2/2] Thermal: exynos: Add compatible string for exynos4412 Date: Thu, 18 Apr 2013 17:07:59 +0530 Message-Id: <1366285079-10395-2-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1366285079-10395-1-git-send-email-sachin.kamat@linaro.org> References: <1366285079-10395-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQlnZrmo41j5ov8ow8kdCkp2ShNo1FXmabVVAmDDKII5FgOqHaGcl9QAYPk6tkPVly/qn1Mh Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Added compatible string for Exynos4412 SoC. Signed-off-by: Sachin Kamat Cc: Amit Daniel Kachhap Acked-by: Eduardo Valentin --- drivers/thermal/exynos_thermal.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/thermal/exynos_thermal.c b/drivers/thermal/exynos_thermal.c index 9df96e5..d20ce9e 100644 --- a/drivers/thermal/exynos_thermal.c +++ b/drivers/thermal/exynos_thermal.c @@ -855,6 +855,10 @@ static const struct of_device_id exynos_tmu_match[] = { .data = (void *)EXYNOS4210_TMU_DRV_DATA, }, { + .compatible = "samsung,exynos4412-tmu", + .data = (void *)EXYNOS_TMU_DRV_DATA, + }, + { .compatible = "samsung,exynos5250-tmu", .data = (void *)EXYNOS_TMU_DRV_DATA, },