Update MSI GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-31 11:41:23 -05:00
parent 281b02b049
commit ec59cc59b0
5 changed files with 49 additions and 39 deletions

View file

@ -1,9 +1,11 @@
/*-----------------------------------------*\
| MSIGPUController.cpp |
| |
| Driver for MSI GPUs |
| |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| MSIGPUController.cpp |
| |
| Driver for MSI GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "MSIGPUController.h"
#include <cstring>

View file

@ -1,15 +1,17 @@
/*-----------------------------------------*\
| MSIGPUController.h |
| |
| Definitions for MSI GPUs |
| |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| MSIGPUController.h |
| |
| Driver for MSI GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "i2c_smbus.h"
#pragma once
typedef unsigned char msi_gpu_dev_id;
#define MSI_GPU_SPEED_MIN 0

View file

@ -1,10 +1,15 @@
/*-----------------------------------------*\
| MSIGPUControllerDetect.cpp |
| |
| Driver for MSI GPUs |
| |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| MSIGPUControllerDetect.cpp |
| |
| Detector for MSI GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "Detector.h"
#include "MSIGPUController.h"
#include "LogManager.h"
@ -12,15 +17,12 @@
#include "RGBController_MSIGPU.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *
* DetectMSIGPUControllers *
* DetectMSIGPUControllers *
* *
* Detect MSI GPU controllers on the enumerated I2C busses. *
* Detect MSI GPU controllers on the enumerated I2C busses. *
* *
\******************************************************************************************/

View file

@ -1,12 +1,14 @@
/*-----------------------------------------*\
| RGBController_MSIGPU.h |
| |
| Generic RGB Interface for MSI GPU |
| |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_MSIGPU.cpp |
| |
| RGBController for MSI GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_MSIGPU.h"
#include <array>
#include "RGBController_MSIGPU.h"
static const std::array<unsigned char, 3> speed_values = { 0x04, 0x02, 0x01 };
@ -424,7 +426,7 @@ void RGBController_MSIGPU::UpdateSingleLED(int /*led*/)
void RGBController_MSIGPU::DeviceUpdateMode()
{
if(TimeToSend())
{
{
if(modes[active_mode].flags & MODE_FLAG_HAS_BRIGHTNESS)
{
msi_gpu->MSIGPURegisterWrite(MSI_GPU_REG_BRIGHTNESS, modes[active_mode].brightness * MSI_GPU_BRIGHTNESS_MULTI);

View file

@ -1,9 +1,11 @@
/*-----------------------------------------*\
| RGBController_MSIGPU.h |
| |
| Generic RGB Interface for MSI GPU |
| |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_MSIGPU.h |
| |
| RGBController for MSI GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once