mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
- Rule 5.7 doesn't allow an identifier to be reused. This patch renames identifier 'notification' to resolve this violation. - Rule 8.3 requires all functions and prototypes to have same parameter names and type qualifier. - Rule 10.x necessitates operands to have essential type, and left and right operands should be of same width. - Rule 11.9 requires pointers to be compared with 'NULL' instead of '0'. - Rule 14.4 requires if statement condition to be Boolean type. - Rule 15.7 needs if-elseif constructs to be terminated with else statement. - Rule 16.x requires all switch statements to be well-formed with unconditional break statement terminate every switch-clause. - Rule 20.7 requires macro parameters to be enclosed in parentheses. - Rule 21.x doesn't allow reserved identifier or macro names to be reused or defined. This patch fixes above listed violations in common/clk_arb/clk_arb.c. Jira NVGPU-3740 Change-Id: I871ce240ca7fb0372240a8886a53c8d4c460acea Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2147640 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>