Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Bernhard Wimmer <be.wimm@gmail.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

authored by

Bernhard Wimmer and committed by
Mauro Carvalho Chehab
caad7940 dc794d3d

+4 -3
+1 -1
Documentation/driver-api/media/drivers/ccs/ccs-regs.asc
··· 210 210 op_pix_clk_div 0x0308 16 211 211 op_sys_clk_div 0x030a 16 212 212 op_pre_pll_clk_div 0x030c 16 213 - op_pll_multiplier 0x031e 16 213 + op_pll_multiplier 0x030e 16 214 214 pll_mode 0x0310 8 215 215 - f 0 0 216 216 - e single 0
+3 -2
Documentation/driver-api/media/drivers/ccs/mk-ccs-regs
··· 72 72 73 73 my $copyright = "/* Copyright (C) 2019--2020 Intel Corporation */\n"; 74 74 my $license = "SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause"; 75 + my $note = "/*\n * Generated by $0;\n * do not modify.\n */\n"; 75 76 76 77 for my $fh ($A, $LC) { 77 - print $fh "// $license\n$copyright\n" if defined $fh; 78 + print $fh "// $license\n$copyright$note\n" if defined $fh; 78 79 } 79 80 80 81 for my $fh ($H, $LH) { 81 - print $fh "/* $license */\n$copyright\n"; 82 + print $fh "/* $license */\n$copyright$note\n"; 82 83 } 83 84 84 85 sub bit_def($) {