aboutsummaryrefslogtreecommitdiff
path: root/drivers/clk/ti/omap4-cm.c
blob: 3cdc9b28887d96b298f17aab8788270460106e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: GPL-2.0+
/*
 * OMAP4 clock manager (cm)
 *
 * Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
 */

#include <common.h>
#include <dm.h>
#include <dm/lists.h>

static const struct udevice_id ti_omap4_cm_ids[] = {
	{.compatible = "ti,omap4-cm"},
	{}
};

U_BOOT_DRIVER(ti_omap4_cm) = {
	.name = "ti_omap4_cm",
	.id = UCLASS_SIMPLE_BUS,
	.of_match = ti_omap4_cm_ids,
	.bind = dm_scan_fdt_dev,
};