https://github.com/torvalds/linux
Raw File
Tip revision: b401b621758e46812da61fa58a67c3fd8d91de0d authored by Linus Torvalds on 18 February 2024, 20:56:25 UTC
Linux 6.8-rc5
Tip revision: b401b62
meson-clkc-utils.c
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 2023 Neil Armstrong <neil.armstrong@linaro.org>
 */

#include <linux/of_device.h>
#include <linux/clk-provider.h>
#include <linux/module.h>
#include "meson-clkc-utils.h"

struct clk_hw *meson_clk_hw_get(struct of_phandle_args *clkspec, void *clk_hw_data)
{
	const struct meson_clk_hw_data *data = clk_hw_data;
	unsigned int idx = clkspec->args[0];

	if (idx >= data->num) {
		pr_err("%s: invalid index %u\n", __func__, idx);
		return ERR_PTR(-EINVAL);
	}

	return data->hws[idx];
}
EXPORT_SYMBOL_GPL(meson_clk_hw_get);

MODULE_LICENSE("GPL");
back to top