Update EVGA GP102 GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-17 11:32:20 -05:00
parent df379e680f
commit 794f6a81e9
5 changed files with 59 additions and 43 deletions

View file

@ -1,12 +1,13 @@
/*-----------------------------------------*\
| EVGAGP102Controller.cpp |
| |
| Driver for EVGA GP102-based Nvidia GPUs |
| RGB controller for use with GeForce |
| GTX 1080 Ti FTW3 and K|NGP|N. |
| |
| Fabricio Murta (avengerx) 1/31/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| EVGAGP102Controller.cpp |
| |
| Driver for EVGA GP102 GPU |
| |
| Fabricio Murta (avengerx) 31 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "EVGAGP102Controller.h"
#include "LogManager.h"

View file

@ -1,19 +1,20 @@
/*-----------------------------------------*\
| EVGAGP102Controller.h |
| |
| Definitions and types for EVGA |
| GP102-based Nvidia GPUs' RGB controller |
| GeForce GTX 1080 Ti K|NGP|N and FTW3. |
| |
| Fabricio Murta (avengerx) 1/31/2021 |
\*-----------------------------------------*/
#include <string>
#include "i2c_smbus.h"
#include <vector>
/*---------------------------------------------------------*\
| EVGAGP102Controller.h |
| |
| Driver for EVGA GP102 GPU |
| |
| Fabricio Murta (avengerx) 31 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include <vector>
#include "i2c_smbus.h"
#define EVGA_GP102_CONTROLLER_NAME "EVGA GP102 Nvidia GPU"
enum

View file

@ -1,3 +1,17 @@
/*---------------------------------------------------------*\
| EVGAGP102ControllerDetect.cpp |
| |
| Detector for EVGA GP102 GPU |
| |
| Fabricio Murta (avengerx) 31 Jan 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 "EVGAGP102Controller.h"
#include "LogManager.h"
@ -5,10 +19,6 @@
#include "RGBController_EVGAGP102.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
typedef struct
{

View file

@ -1,14 +1,16 @@
/*-----------------------------------------*\
| RGBController_EVGAGPUv1.cpp |
| |
| Generic RGB Interface for OpenRGB EVGA |
| GP102-based Nvidia GPUs. |
| |
| Fabricio Murta (avengerx) 1/31/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_EVGAGP102.cpp |
| |
| RGBController for EVGA GP102 GPU |
| |
| Fabricio Murta (avengerx) 31 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_EVGAGP102.h"
#include <array>
#include "RGBController_EVGAGP102.h"
/**------------------------------------------------------------------*\
@name EVGA GP102 GPU

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_EVGAGP102.h |
| |
| EVGA Generic RGB Interface for OpenRGB |
| EVGA GP102-based Nvidia GPUs. |
| |
| Fabricio Murta (avengerx) 1/31/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_EVGAGP102.h |
| |
| RGBController for EVGA GP102 GPU |
| |
| Fabricio Murta (avengerx) 31 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once