Commit caad7940 authored by Bernhard Wimmer's avatar Bernhard Wimmer Committed by Mauro Carvalho Chehab

media: Documentation: ccs: Fix the op_pll_multiplier address

According to the CCS spec the op_pll_multiplier address is 0x030e,
not 0x031e.
Signed-off-by: default avatarBernhard Wimmer <be.wimm@gmail.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent dc794d3d
...@@ -210,7 +210,7 @@ pll_multiplier 0x0306 16 ...@@ -210,7 +210,7 @@ pll_multiplier 0x0306 16
op_pix_clk_div 0x0308 16 op_pix_clk_div 0x0308 16
op_sys_clk_div 0x030a 16 op_sys_clk_div 0x030a 16
op_pre_pll_clk_div 0x030c 16 op_pre_pll_clk_div 0x030c 16
op_pll_multiplier 0x031e 16 op_pll_multiplier 0x030e 16
pll_mode 0x0310 8 pll_mode 0x0310 8
- f 0 0 - f 0 0
- e single 0 - e single 0
......
...@@ -72,13 +72,14 @@ $uc_header =~ s/[^A-Z0-9]/_/g; ...@@ -72,13 +72,14 @@ $uc_header =~ s/[^A-Z0-9]/_/g;
my $copyright = "/* Copyright (C) 2019--2020 Intel Corporation */\n"; my $copyright = "/* Copyright (C) 2019--2020 Intel Corporation */\n";
my $license = "SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause"; my $license = "SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause";
my $note = "/*\n * Generated by $0;\n * do not modify.\n */\n";
for my $fh ($A, $LC) { for my $fh ($A, $LC) {
print $fh "// $license\n$copyright\n" if defined $fh; print $fh "// $license\n$copyright$note\n" if defined $fh;
} }
for my $fh ($H, $LH) { for my $fh ($H, $LH) {
print $fh "/* $license */\n$copyright\n"; print $fh "/* $license */\n$copyright$note\n";
} }
sub bit_def($) { sub bit_def($) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment