diff options
Diffstat (limited to 'drivers/regulator/mt6380-regulator.c')
| -rw-r--r-- | drivers/regulator/mt6380-regulator.c | 25 | 
1 files changed, 8 insertions, 17 deletions
| diff --git a/drivers/regulator/mt6380-regulator.c b/drivers/regulator/mt6380-regulator.c index 127dd720cbcc..b6aed090b5e0 100644 --- a/drivers/regulator/mt6380-regulator.c +++ b/drivers/regulator/mt6380-regulator.c @@ -1,16 +1,7 @@ -/* - * Copyright (c) 2017 MediaTek Inc. - * Author: Chenglin Xu <[email protected]> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * 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. - */ +// SPDX-License-Identifier: GPL-2.0 +// +// Copyright (c) 2017 MediaTek Inc. +// Author: Chenglin Xu <[email protected]>  #include <linux/module.h>  #include <linux/of.h> @@ -173,19 +164,19 @@ static const struct regulator_linear_range buck_volt_range3[] = {  	REGULATOR_LINEAR_RANGE(1200000, 0, 0x3c, 25000),  }; -static const u32 ldo_volt_table1[] = { +static const unsigned int ldo_volt_table1[] = {  	1400000, 1350000, 1300000, 1250000, 1200000, 1150000, 1100000, 1050000,  }; -static const u32 ldo_volt_table2[] = { +static const unsigned int ldo_volt_table2[] = {  	2200000, 3300000,  }; -static const u32 ldo_volt_table3[] = { +static const unsigned int ldo_volt_table3[] = {  	1240000, 1390000, 1540000, 1840000,  }; -static const u32 ldo_volt_table4[] = { +static const unsigned int ldo_volt_table4[] = {  	2200000, 3300000,  }; |