Update more file header comments to standardized new format, move some locally owned files out of the dependencies folder

This commit is contained in:
Adam Honse 2024-05-08 11:53:07 -05:00
parent ff2957ec80
commit 1bbfded78a
25 changed files with 123 additions and 105 deletions

View file

@ -10,7 +10,7 @@
\*-----------------------------------------*/
#include "MSIRGBController.h"
#include "dependencies/dmiinfo.h"
#include "dmiinfo.h"
#include "super_io.h"
MSIRGBController::MSIRGBController(int sioaddr, bool invert)
@ -29,7 +29,7 @@ MSIRGBController::MSIRGBController(int sioaddr, bool invert)
val_at_2c |= 0b00010000;
superio_outb(msi_sioaddr, 0x2C, val_at_2c);
/*-----------------------------------------------------*\
| Set logical device register to RGB controller |
@ -108,4 +108,4 @@ void MSIRGBController::SetColor(unsigned char red, unsigned char green, unsigned
superio_outb(msi_sioaddr, MSI_SIO_RGB_REG_BLUE_3_2, (blue | (blue << 4)));
superio_outb(msi_sioaddr, MSI_SIO_RGB_REG_BLUE_5_4, (blue | (blue << 4)));
superio_outb(msi_sioaddr, MSI_SIO_RGB_REG_BLUE_7_6, (blue | (blue << 4)));
}
}