From 0c80853184267ab6208c1c5e9b975af38dbd8002 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Fri, 13 Nov 2020 13:44:36 -0300 Subject: [PATCH] LM78 comment consistency fix --- src/device/hwm_lm78.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/device/hwm_lm78.c b/src/device/hwm_lm78.c index 33c0221f2..8b95bbade 100644 --- a/src/device/hwm_lm78.c +++ b/src/device/hwm_lm78.c @@ -519,10 +519,10 @@ lm78_init(const device_t *info) /* Set chip-specific default values. */ if (dev->local & LM78_AS99127F) { - /* different -12V Rin value for AS99127F (bruteforced) */ + /* AS99127: different -12V Rin value (bruteforced) */ defaults.voltages[5] = LM78_NEG_VOLTAGE(12000, 2400); } else if (dev->local & LM78_W83782D) { - /* W83782D uses a different negative voltage formula */ + /* W83782D: different negative voltage formula */ defaults.voltages[5] = LM78_NEG_VOLTAGE2(12000, 232); defaults.voltages[6] = LM78_NEG_VOLTAGE2(5000, 120); }