From patchwork Wed Mar 6 00:22:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 2222551 Return-Path: X-Original-To: patchwork-linux-sh@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 4D3693FCF2 for ; Wed, 6 Mar 2013 00:16:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752721Ab3CFAQh (ORCPT ); Tue, 5 Mar 2013 19:16:37 -0500 Received: from mail-da0-f51.google.com ([209.85.210.51]:45229 "EHLO mail-da0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752561Ab3CFAQg (ORCPT ); Tue, 5 Mar 2013 19:16:36 -0500 Received: by mail-da0-f51.google.com with SMTP id z17so56303dal.38 for ; Tue, 05 Mar 2013 16:16:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:date:message-id:in-reply-to:references :subject; bh=xM7uNd6si5G7fb/h+PjxgPom2sE81LhnxgXQhkb6zMQ=; b=WbQhRDoSogF10aBCyxXbW2LDQlxA4P26LoBe4gWWVsbNn0wWzsp76Nw71w4lSt+xD5 iOaFDIXe1iri62uQ8B9jVL74/qbkZdNIV9wCuh9xIcvCnRUk9jWsKvCbrsFzl7ppXT59 Utlz/KXddjLdfHgwFy5nH7vo2KlRVGR0AoR15TCZU0t2y3swcc9Lzzn1MIWRvPJbMuVB q5K/vc7U2PjMZO2XD9Lv74wARP/jOGJFNme1zEXKAJY6Mza5+Jpx+YnnbzeT93pWxwOm z4xDnnM9HC9/NyLKXvTIc7ZPPKzZ2A2/dh+eqwe2ZOOL9DaU+P9VZRcLVA+e578rF2nO NTZg== X-Received: by 10.68.197.70 with SMTP id is6mr41375302pbc.79.1362528995982; Tue, 05 Mar 2013 16:16:35 -0800 (PST) Received: from [127.0.0.1] (FL1-122-135-132-124.tky.mesh.ad.jp. [122.135.132.124]) by mx.google.com with ESMTPS id ri1sm28746825pbc.16.2013.03.05.16.16.33 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 16:16:34 -0800 (PST) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au, linux-arm-kernel@lists.infradead.org Date: Wed, 06 Mar 2013 09:22:24 +0900 Message-Id: <20130306002224.5430.13116.sendpatchset@w520> In-Reply-To: <20130306002214.5430.43766.sendpatchset@w520> References: <20130306002214.5430.43766.sendpatchset@w520> Subject: [PATCH 01/04] ARM: shmobile: Register DT TWD from timer.c Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org From: Magnus Damm Add a call to twd_local_timer_of_register() in the function shmobile_timer_init(). In case we have TWD device information provided via DT this will make sure the TWD driver gets registered. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/timer.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/arch/arm/mach-shmobile/timer.c +++ work/arch/arm/mach-shmobile/timer.c 2013-03-05 17:55:48.000000000 +0900 @@ -65,4 +65,5 @@ void __init shmobile_timer_init(void) { arch_timer_of_register(); arch_timer_sched_clock_init(); + twd_local_timer_of_register(); }