Update Gigabyte Aorus RGB Fusion 2 GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-19 17:47:34 -05:00
parent 0b78dd3d86
commit cee3be9113
5 changed files with 46 additions and 41 deletions

View file

@ -1,12 +1,11 @@
/*-----------------------------------------*\
| GigabyteRGBFusion2GPUController.cpp |
| |
| Driver for Gigabyte Aorus RGB Fusion2 GPU|
| lighting controller |
| |
| based on original by |
| Adam Honse (CalcProgrammer1) |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteRGBFusion2GPUController.cpp |
| |
| Driver for Gigabyte Aorus RGB Fusion 2 GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <chrono>
#include <thread>

View file

@ -1,19 +1,18 @@
/*------------------------------------------*\
| GigabyteRGBFusion2GPUController.h |
| |
| Definitions and types for Gigabyte Aorus |
| RGB Fusion2 GPU lighting controller |
| |
| based on original by |
| Adam Honse (CalcProgrammer1) 2/20/2020 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteRGBFusion2GPUController.h |
| |
| Driver for Gigabyte Aorus RGB Fusion 2 GPU |
| |
| 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 rgb_fusion_dev_id;
struct fusion2_config

View file

@ -1,3 +1,15 @@
/*---------------------------------------------------------*\
| GigabyteRGBFusion2GPUControllerDetect.cpp |
| |
| Detector for Gigabyte Aorus RGB Fusion 2 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 "GigabyteRGBFusion2GPUController.h"
#include "LogManager.h"
@ -5,9 +17,6 @@
#include "RGBController_GigabyteRGBFusion2GPU.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#define GIGABYTEGPU_CONTROLLER_NAME2 "Gigabyte RGB Fusion2 GPU"

View file

@ -1,12 +1,11 @@
/*-----------------------------------------*\
| RGBController_GigabyteRGBFusion2GPU.cpp |
| |
| Generic RGB Interface for OpenRGB |
| Gigabyte RGB Fusion2 GPU Driver |
| |
| based on original by |
| Adam Honse (CalcProgrammer1) |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteRGBFusion2GPU.cpp |
| |
| RGBController for Gigabyte Aorus RGB Fusion 2 GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_GigabyteRGBFusion2GPU.h"
#include "LogManager.h"

View file

@ -1,12 +1,11 @@
/*-----------------------------------------*\
| RGBController_GigabyteRGBFusion2GPU.h |
| |
| Generic RGB Interface for OpenRGB |
| Gigabyte RGB Fusion2 GPU Driver |
| |
| based on original by |
| Adam Honse (CalcProgrammer1) 2/23/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteRGBFusion2GPU.h |
| |
| RGBController for Gigabyte Aorus RGB Fusion 2 GPU |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once