From f70575805708cabdedea7498aaa3f710fde4d920 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Wed, 31 Jan 2024 03:29:01 +0000 Subject: [PATCH] add lvds1024*800 --- kernel/drivers/clk/clk-vt8500.c | 15 +++------------ 1 files changed, 3 insertions(+), 12 deletions(-) diff --git a/kernel/drivers/clk/clk-vt8500.c b/kernel/drivers/clk/clk-vt8500.c index 806a95d..2a74a71 100644 --- a/kernel/drivers/clk/clk-vt8500.c +++ b/kernel/drivers/clk/clk-vt8500.c @@ -1,16 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Clock implementation for VIA/Wondermedia SoC's * Copyright (C) 2012 Tony Prisk <linux@prisktech.co.nz> - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * */ #include <linux/io.h> @@ -236,7 +227,7 @@ struct clk_device *dev_clk; const char *clk_name = node->name; const char *parent_name; - struct clk_init_data init = {}; + struct clk_init_data init; int rc; int clk_init_flags = 0; @@ -686,7 +677,7 @@ struct clk_pll *pll_clk; const char *clk_name = node->name; const char *parent_name; - struct clk_init_data init = {}; + struct clk_init_data init; int rc; if (!pmc_base) -- Gitblit v1.6.2