Update EVGA V3 GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-16 22:33:38 -05:00
parent 9f98e8767c
commit 19e5626d50
5 changed files with 56 additions and 37 deletions

View file

@ -1,3 +1,17 @@
/*---------------------------------------------------------*\
| EVGAAmpereGPUControllerDetect.cpp |
| |
| Detector for EVGA V3 (Ampere) GPU |
| |
| TheRogueZeta 15 Jul 2021 |
| |
| 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 "EVGAGPUv3Controller.h"
#include "LogManager.h"
@ -5,9 +19,6 @@
#include "RGBController_EVGAGPUv3.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| EVGAGPUv3Controller.cpp |
| |
| Driver for EVGA GPU RGB V3 (Ampere) |
| lighting controller |
| |
| TheRogueZeta 7/15/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| EVGAGPUv3Controller.cpp |
| |
| Driver for EVGA V3 (Ampere) GPU |
| |
| TheRogueZeta 15 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "EVGAGPUv3Controller.h"
#include "LogManager.h"

View file

@ -1,18 +1,20 @@
/*-----------------------------------------*\
| EVGAGPUv3Controller.h |
| |
| Definitions and types for EVGA GPU RGB |
| V3 (Ampere) lighting controller |
| |
| TheRogueZeta 7/15/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| EVGAGPUv3Controller.h |
| |
| Driver for EVGA V3 (Ampere) GPU |
| |
| TheRogueZeta 15 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "i2c_smbus.h"
#include "RGBController.h"
#pragma once
typedef unsigned char evga_dev_id;
#define SPEED_MULTIPLIER 10

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_EVGAGPUv3.cpp |
| |
| Generic RGB Interface for OpenRGB EVGA |
| GPU V3 (Ampere) Driver |
| |
| TheRogueZeta 7/15/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_EVGAGPUv3.cpp |
| |
| RGBController for EVGA V3 (Ampere) GPU |
| |
| TheRogueZeta 15 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_EVGAGPUv3.h"
#include "LogManager.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_EVGAGPUv3.h |
| |
| Generic RGB Interface for OpenRGB |
| EVGA GPU RGB V3 (Ampere) Driver |
| |
| TheRogueZeta 7/15/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_EVGAGPUv3.h |
| |
| RGBController for EVGA V3 (Ampere) GPU |
| |
| TheRogueZeta 15 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once