From patchwork Wed Mar 19 12:25:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3858761 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 09989BF549 for ; Wed, 19 Mar 2014 18:12:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3D8FE2021A for ; Wed, 19 Mar 2014 18:12:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6896120173 for ; Wed, 19 Mar 2014 18:12:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964937AbaCSMcd (ORCPT ); Wed, 19 Mar 2014 08:32:33 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:53899 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964931AbaCSMcc (ORCPT ); Wed, 19 Mar 2014 08:32:32 -0400 Received: by mail-pa0-f50.google.com with SMTP id kq14so8866601pab.37 for ; Wed, 19 Mar 2014 05:32:31 -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:in-reply-to :references; bh=WYbWuHXU+mlYKmx5n6LctWXGuRlyhV8ZUAm9AK9KDiY=; b=iCU/CgrmL+qRkZXhD+7DlZEPdEkgeeZfVww4DuisTk0WFzdlECnef/FQJyNTI03+RE dwWwCf7p4VaBHdlNIXhGdbWpP20qbvFUzYqdcTlDTtzUnNTl2qvyPXnCsKBy2m1VIYCM D+5wx5Ty7OCIs5VWQeaLB2dPZNg0WY0Y7ZXrabTPa7Yt+cvhuT2lHPEAws6np7hamIKM QFyzwx5kvAM9dCQiHw6EEaeeNhc02URK2MFrkWo64P+WcmOMIrCkmaxPIkhB9Q7Pc6VD AEJMzFb+3pc7y2DyYewBQb9PSlmv+v4ozkHKRiN38svNHWhlskXGu0mG3R2phzsqDFJT 62UQ== X-Gm-Message-State: ALoCoQnDOed18zjLZsQU8vXvQOnOQ2WQXz2H+cbdoGfuxx0IwNcLX4koste24/Zuguux2rcJVV+o X-Received: by 10.68.189.33 with SMTP id gf1mr38980885pbc.111.1395232351637; Wed, 19 Mar 2014 05:32:31 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id vg1sm61945544pbc.44.2014.03.19.05.32.28 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 19 Mar 2014 05:32:30 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, t.figa@samsung.com, arnd@arndb.de, kgene.kim@samsung.com, sachin.kamat@linaro.org Subject: [PATCH 3/4] ARM: EXYNOS: Add generic compatible strings Date: Wed, 19 Mar 2014 17:55:56 +0530 Message-Id: <1395231957-22032-4-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1395231957-22032-1-git-send-email-sachin.kamat@linaro.org> References: <1395231957-22032-1-git-send-email-sachin.kamat@linaro.org> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_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 Add generic compatible strings for Exynos4 and 5 platforms so that future SoCs can use them if there is nothing extra/specific to be differentiated. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/exynos.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c index b6fd40e76936..07884efd3a48 100644 --- a/arch/arm/mach-exynos/exynos.c +++ b/arch/arm/mach-exynos/exynos.c @@ -343,9 +343,11 @@ static void __init exynos_dt_machine_init(void) } static char const *exynos_dt_compat[] __initconst = { + "samsung,exynos4", "samsung,exynos4210", "samsung,exynos4212", "samsung,exynos4412", + "samsung,exynos5", "samsung,exynos5250", "samsung,exynos5420", "samsung,exynos5440",