LM78 comment consistency fix

This commit is contained in:
RichardG867
2020-11-13 13:44:36 -03:00
parent 7f7305c35c
commit 0c80853184

View File

@@ -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);
}