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

Fix typo milivolt => millivolt

Signed-off-by: Thomas Weber <thomas@tweber.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Thomas Weber and committed by
Jiri Kosina
91fe4d50 450c6076

+14 -14
+1 -1
Documentation/hwmon/wm831x
··· 22 22 Voltage Monitoring 23 23 ------------------ 24 24 25 - Voltages are sampled by a 12 bit ADC. Voltages in milivolts are 1.465 25 + Voltages are sampled by a 12 bit ADC. Voltages in millivolts are 1.465 26 26 times the ADC value. 27 27 28 28 Temperature Monitoring
+1 -1
drivers/mfd/tps65911-comparator.c
··· 26 26 #define COMP1 1 27 27 #define COMP2 2 28 28 29 - /* Comparator 1 voltage selection table in milivolts */ 29 + /* Comparator 1 voltage selection table in millivolts */ 30 30 static const u16 COMP_VSEL_TABLE[] = { 31 31 0, 2500, 2500, 2500, 2500, 2550, 2600, 2650, 32 32 2700, 2750, 2800, 2850, 2900, 2950, 3000, 3050,
+1 -1
drivers/power/bq27x00_battery.c
··· 456 456 } 457 457 458 458 /* 459 - * Return the battery Voltage in milivolts 459 + * Return the battery Voltage in millivolts 460 460 * Or < 0 if something fails. 461 461 */ 462 462 static int bq27x00_battery_voltage(struct bq27x00_device_info *di,
+10 -10
drivers/regulator/tps65910-regulator.c
··· 27 27 28 28 #define TPS65910_SUPPLY_STATE_ENABLED 0x1 29 29 30 - /* supported VIO voltages in milivolts */ 30 + /* supported VIO voltages in millivolts */ 31 31 static const u16 VIO_VSEL_table[] = { 32 32 1500, 1800, 2500, 3300, 33 33 }; 34 34 35 35 /* VSEL tables for TPS65910 specific LDOs and dcdc's */ 36 36 37 - /* supported VDD3 voltages in milivolts */ 37 + /* supported VDD3 voltages in millivolts */ 38 38 static const u16 VDD3_VSEL_table[] = { 39 39 5000, 40 40 }; 41 41 42 - /* supported VDIG1 voltages in milivolts */ 42 + /* supported VDIG1 voltages in millivolts */ 43 43 static const u16 VDIG1_VSEL_table[] = { 44 44 1200, 1500, 1800, 2700, 45 45 }; 46 46 47 - /* supported VDIG2 voltages in milivolts */ 47 + /* supported VDIG2 voltages in millivolts */ 48 48 static const u16 VDIG2_VSEL_table[] = { 49 49 1000, 1100, 1200, 1800, 50 50 }; 51 51 52 - /* supported VPLL voltages in milivolts */ 52 + /* supported VPLL voltages in millivolts */ 53 53 static const u16 VPLL_VSEL_table[] = { 54 54 1000, 1100, 1800, 2500, 55 55 }; 56 56 57 - /* supported VDAC voltages in milivolts */ 57 + /* supported VDAC voltages in millivolts */ 58 58 static const u16 VDAC_VSEL_table[] = { 59 59 1800, 2600, 2800, 2850, 60 60 }; 61 61 62 - /* supported VAUX1 voltages in milivolts */ 62 + /* supported VAUX1 voltages in millivolts */ 63 63 static const u16 VAUX1_VSEL_table[] = { 64 64 1800, 2500, 2800, 2850, 65 65 }; 66 66 67 - /* supported VAUX2 voltages in milivolts */ 67 + /* supported VAUX2 voltages in millivolts */ 68 68 static const u16 VAUX2_VSEL_table[] = { 69 69 1800, 2800, 2900, 3300, 70 70 }; 71 71 72 - /* supported VAUX33 voltages in milivolts */ 72 + /* supported VAUX33 voltages in millivolts */ 73 73 static const u16 VAUX33_VSEL_table[] = { 74 74 1800, 2000, 2800, 3300, 75 75 }; 76 76 77 - /* supported VMMC voltages in milivolts */ 77 + /* supported VMMC voltages in millivolts */ 78 78 static const u16 VMMC_VSEL_table[] = { 79 79 1800, 2800, 3000, 3300, 80 80 };
+1 -1
include/linux/mfd/wm831x/pdata.h
··· 26 26 struct wm831x_backup_pdata { 27 27 int charger_enable; 28 28 int no_constant_voltage; /** Disable constant voltage charging */ 29 - int vlim; /** Voltage limit in milivolts */ 29 + int vlim; /** Voltage limit in millivolts */ 30 30 int ilim; /** Current limit in microamps */ 31 31 }; 32 32