diff options
author | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-03-01 10:35:39 +0000 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2022-03-15 17:43:11 +0800 |
commit | fd426b31066ba61ee1ff96a2b56c919251ffdd9e (patch) | |
tree | 12cca16af2089ff5c0f2666216307aefa442ef75 /test | |
parent | c149bf41404e34014e37de32fac332892b11bd4a (diff) | |
download | u-boot-fd426b31066ba61ee1ff96a2b56c919251ffdd9e.zip u-boot-fd426b31066ba61ee1ff96a2b56c919251ffdd9e.tar.gz u-boot-fd426b31066ba61ee1ff96a2b56c919251ffdd9e.tar.bz2 |
k210: use the board vendor name rather than the marketing name
"kendryte" is the marketing name for the K210 RISC-V SoC produced by
Canaan Inc. Rather than "kendryte,k210", use the usual "canaan,k210"
vendor,SoC compatibility string format in the device tree files and
use the SoC name for file names.
With these changes, the device tree files are more in sync with the
Linux kernel DTS and drivers, making uboot device tree usable by the
kernel.
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/dm/k210_pll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/k210_pll.c b/test/dm/k210_pll.c index f55379f..a0cc84c 100644 --- a/test/dm/k210_pll.c +++ b/test/dm/k210_pll.c @@ -7,7 +7,7 @@ /* For DIV_ROUND_DOWN_ULL, defined in linux/kernel.h */ #include <div64.h> #include <dm/test.h> -#include <kendryte/pll.h> +#include <k210/pll.h> #include <test/ut.h> static int dm_test_k210_pll_calc_config(u32 rate, u32 rate_in, |