Update Gigabyte Aorus Super IO motherboard controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-19 18:15:18 -05:00
parent 75d77ea608
commit de7d0a4c76
5 changed files with 58 additions and 39 deletions

View file

@ -1,8 +1,13 @@
/*------------------------------------------*\
| GigabyteSuperIORGBController.cpp |
| |
| Ryan Frankcombe (422gRdHuX5uk) 2/11/2020 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteSuperIORGBController.cpp |
| |
| Driver for Gigabyte Aorus Super IO motherboard |
| |
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "GigabyteSuperIORGBController.h"
#include "super_io.h"

View file

@ -1,14 +1,17 @@
/*-----------------------------------------------*\
| GigabyteSuperIORGBController.h |
| |
| Definitions and types for Gigabyte SuperIO RGB |
| lighting controller |
| |
| Ryan Frankcombe (422gRdHuX5uk) 9/11/2022 |
\*-----------------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteSuperIORGBController.h |
| |
| Driver for Gigabyte Aorus Super IO motherboard |
| |
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#pragma once
enum
{

View file

@ -1,20 +1,24 @@
/*-----------------------------------------------*\
| RGBController_GigabyteSuperIORGB.cpp |
| |
| Detect Gigabyte RGB compatible Super-IO chips |
| |
| Ryan Frankcombe (422gRdHuX5uk ) 9/11/2022 |
\*-----------------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteSuperIORGBControllerDetect.cpp |
| |
| Detector for Gigabyte Aorus Super IO motherboard |
| |
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "Detector.h"
#include "GigabyteSuperIORGBController.h"
#include "RGBController.h"
#include "RGBController_GigabyteSuperIORGB.h"
#include "super_io.h"
#include "dmiinfo.h"
#include <iostream>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#define NUM_COMPATIBLE_DEVICES (sizeof(compatible_devices) / sizeof(compatible_devices[0]))

View file

@ -1,10 +1,13 @@
/*-------------------------------------------*\
| RGBController_GigabyteSuperIORGB.cpp |
| |
| Generic RGB Interface for Gigabyte RGB |
| |
| Ryan Frankcombe (422gRdHuX5uk ) 9/11/2022 |
\*-------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteSuperIORGB.cpp |
| |
| RGBController for Gigabyte Aorus Super IO motherboard |
| |
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_GigabyteSuperIORGB.h"

View file

@ -1,12 +1,16 @@
/*------------------------------------------*\
| RGBController_GigabyteSuperIORGB.h |
| |
| Generic RGB Interface for Gigabyte RGB |
| |
| Ryan Frankcombe (422gRdHuX5uk) 9/11/2022 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteSuperIORGB.h |
| |
| RGBController for Gigabyte Aorus Super IO motherboard |
| |
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "GigabyteSuperIORGBController.h"