From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id AEA4AC004D4 for ; Sat, 21 Jan 2023 15:54:59 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 058C285463; Sat, 21 Jan 2023 16:54:51 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="Ov0xgqvI"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 312748566F; Sat, 21 Jan 2023 16:54:42 +0100 (CET) Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 97C088558A for ; Sat, 21 Jan 2023 16:54:38 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=sjoerd@collabora.com Received: from beast.luon.net (simons.connected.by.freedominter.net [45.83.240.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: sjoerd) by madras.collabora.co.uk (Postfix) with ESMTPSA id 22F226602E0F; Sat, 21 Jan 2023 15:54:38 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1674316478; bh=xAyk3C4JRBQSZLUCE8XWJqvzMDtuYLbHHnC/QOJjX1E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ov0xgqvIaXEXUjFBD0mX4jFdOhiuyOZfQVfdAwPi+cFm2BrotICZxy9gD3HgJmQmo ZpSSLICzoo+O54A1RWQS8elO4WEXNOoDp4iGCeZra4DfTfl2M9oyFcU57MJTuoICWf KHFSZ85NmrfJha36Fy7oQpWoUPfPz9EGQ5x6FbC15PkmrP78PS1EBbd8QVX5rgo06t puedaMc7QHlrMyx6ngHN0qsjIcAteV2inis+JVTMBFJ3ChX8zy5aOfRAblzoYARstO NvHphmNeGO1YeNtsyeVVLfnCDxVBJMX2VvwQpZVZelKJfgZvOy12lonZbDhxSMIhlt cgS+rVUrz2CyQ== Received: by beast.luon.net (Postfix, from userid 1000) id 0990064481E9; Sat, 21 Jan 2023 16:54:36 +0100 (CET) From: Sjoerd Simons To: u-boot@lists.denx.de Cc: Tom Rini Subject: [PATCH 1/8] omap: timer: add ti,am654-timer compatibility Date: Sat, 21 Jan 2023 16:54:27 +0100 Message-Id: <20230121155435.2858173-2-sjoerd@collabora.com> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230121155435.2858173-1-sjoerd@collabora.com> References: <20230121155435.2858173-1-sjoerd@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean THe TI AM654 timer is compatible with the omap-timer implementation, so add it to the id list Signed-off-by: Sjoerd Simons --- drivers/timer/omap-timer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/timer/omap-timer.c b/drivers/timer/omap-timer.c index aa2e4360c1b..9b6d97dae67 100644 --- a/drivers/timer/omap-timer.c +++ b/drivers/timer/omap-timer.c @@ -114,6 +114,7 @@ static const struct udevice_id omap_timer_ids[] = { { .compatible = "ti,am335x-timer" }, { .compatible = "ti,am4372-timer" }, { .compatible = "ti,omap5430-timer" }, + { .compatible = "ti,am654-timer" }, {} }; -- 2.39.0