mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
38a2a48cd9
If all branches of a switch statement have a return instruction, all subsequent lines are unreachable. Identified with cppcheck. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
37 lines
714 B
C
37 lines
714 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2019 Google LLC
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <clk-uclass.h>
|
|
#include <dt-bindings/clock/intel-clock.h>
|
|
|
|
static ulong intel_clk_get_rate(struct clk *clk)
|
|
{
|
|
switch (clk->id) {
|
|
case CLK_I2C:
|
|
/* Hard-coded to 133MHz on current platforms */
|
|
return 133333333;
|
|
default:
|
|
return -ENODEV;
|
|
}
|
|
}
|
|
|
|
static struct clk_ops intel_clk_ops = {
|
|
.get_rate = intel_clk_get_rate,
|
|
};
|
|
|
|
static const struct udevice_id intel_clk_ids[] = {
|
|
{ .compatible = "intel,apl-clk" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(clk_intel) = {
|
|
.name = "clk_intel",
|
|
.id = UCLASS_CLK,
|
|
.of_match = intel_clk_ids,
|
|
.ops = &intel_clk_ops,
|
|
};
|