From 9f345455bdafcaced6797fbb1c71263701f9a9ad Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Fri, 30 Oct 2020 20:47:57 -0300 Subject: [PATCH] Add missing newline --- 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 fb71406a9..28d97909c 100644 --- a/src/device/hwm_lm78.c +++ b/src/device/hwm_lm78.c @@ -523,7 +523,7 @@ lm78_init(const device_t *info) /* Set per-chip defaults. */ if (dev->local & LM78_AS99127F) { - defaults.voltages[5] = 12000 * (604.0 / 2400.0); /* different -12V Rin for AS99127F (bruteforced) */ + defaults.voltages[5] = 12000 * (604.0 / 2400.0); /* different -12V Rin value for AS99127F (bruteforced) */ } else if (dev->local & LM78_W83782D) { /* different negative voltage formula for W83782D (from the datasheet) */ defaults.voltages[5] = ((3600 + 12000) * (232.0 / (232.0 + 56.0))) - 12000; @@ -610,4 +610,4 @@ const device_t w83782d_device = { lm78_init, lm78_close, NULL, NULL, NULL, NULL, NULL -}; \ No newline at end of file +};