Update Palit GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-03 11:33:54 -05:00
parent aac70462c5
commit 281d3d8c62
5 changed files with 56 additions and 37 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| PalitGPUController.cpp | | PalitGPUController.cpp |
| | | |
| Driver for Palit GPU RGB | | Driver for Palit GPU |
| lighting controller | | |
| | | Manatsawin Hanmongkolchai 11 Apr 2023 |
| Manatsawin Hanmongkolchai 04/11/2023 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "PalitGPUController.h" #include "PalitGPUController.h"

View file

@ -1,17 +1,19 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| PalitGPUController.h | | PalitGPUController.h |
| | | |
| Definitions and types for Palit GPU RGB | | Driver for Palit GPU |
| lighting controller | | |
| | | Manatsawin Hanmongkolchai 11 Apr 2023 |
| Manatsawin Hanmongkolchai 04/11/2023 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string> #include <string>
#include "i2c_smbus.h" #include "i2c_smbus.h"
#pragma once
typedef unsigned char palit_dev_id; typedef unsigned char palit_dev_id;
enum enum

View file

@ -1,3 +1,17 @@
/*---------------------------------------------------------*\
| PalitGPUControllerDetect.cpp |
| |
| Detector for Palit GPU |
| |
| Manatsawin Hanmongkolchai 11 Apr 2023 |
| |
| 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 "Detector.h"
#include "LogManager.h" #include "LogManager.h"
#include "PalitGPUController.h" #include "PalitGPUController.h"
@ -5,9 +19,6 @@
#include "RGBController_PalitGPU.h" #include "RGBController_PalitGPU.h"
#include "i2c_smbus.h" #include "i2c_smbus.h"
#include "pci_ids.h" #include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\ /******************************************************************************************\
* * * *

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_PalitGPU.cpp | | RGBController_PalitGPU.cpp |
| | | |
| Generic RGB Interface for OpenRGB | | RGBController for Palit GPU |
| Palit GPU RGB Driver | | |
| | | Manatsawin Hanmongkolchai 11 Apr 2023 |
| Manatsawin Hanmongkolchai 04/11/2023 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_PalitGPU.h" #include "RGBController_PalitGPU.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_PalitGPU.h | | RGBController_PalitGPU.h |
| | | |
| Generic RGB Interface for OpenRGB | | RGBController for Palit GPU |
| Palit GPU RGB Driver | | |
| | | Manatsawin Hanmongkolchai 11 Apr 2023 |
| Manatsawin Hanmongkolchai 04/11/2023 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once #pragma once