Update PNY GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-04 11:26:22 -05:00
parent 3cf1f58f30
commit bd5473663b
5 changed files with 56 additions and 37 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| PNYGPUController.cpp |
| |
| Driver for PNY GPU RGB (Turing) |
| lighting controller |
| |
| KendallMorgan 10/17/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| PNYGPUController.cpp |
| |
| Driver for PNY Turing GPU |
| |
| KendallMorgan 17 Oct 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "PNYGPUController.h"

View file

@ -1,17 +1,19 @@
/*-----------------------------------------*\
| PNYGPUController.h |
| |
| Definitions and types for PNY GPU RGB |
| (Turing) lighting controller |
| |
| KendallMorgan 10/17/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| PNYGPUController.h |
| |
| Driver for PNY Turing GPU |
| |
| KendallMorgan 17 Oct 2021 |
| |
| 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 pny_dev_id;
enum

View file

@ -1,3 +1,17 @@
/*---------------------------------------------------------*\
| PNYGPUControllerDetect.cpp |
| |
| Detector for PNY Turing GPU |
| |
| KendallMorgan 17 Oct 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 "LogManager.h"
#include "PNYGPUController.h"
@ -5,9 +19,6 @@
#include "RGBController_PNYGPU.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_PNYGPU.cpp |
| |
| Generic RGB Interface for OpenRGB PNY |
| GPU (Turing) Driver |
| |
| KendallMorgan 10/17/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_PNYGPU.cpp |
| |
| RGBController for PNY Turing GPU |
| |
| KendallMorgan 17 Oct 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_PNYGPU.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_PNYGPU.h |
| |
| Generic RGB Interface for OpenRGB |
| PNY GPU RGB (Turing) Driver |
| |
| KendallMorgan 10/17/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_PNYGPU.h |
| |
| RGBController for PNY Turing GPU |
| |
| KendallMorgan 17 Oct 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once