Initial commit for the Gigabyte AORUS 2070 Super 8G GPU

* Small fix to zone enumeration
+ Add id to pci_ids.h
+ Register detector in GigabyteRGBFusion2GPUControllerDetect.cpp
+ Link to [webpage](https://www.gigabyte.com/Graphics-Card/GV-N207SAORUS-8GC-rev-10-11#kf)
This commit is contained in:
Chris
2022-03-05 18:28:17 +11:00
committed by Adam Honse
parent 97155d240b
commit 4f9eb7e4be
4 changed files with 10 additions and 3 deletions

View File

@@ -19,6 +19,11 @@ RGBFusion2GPUController::RGBFusion2GPUController(i2c_smbus_interface* bus, rgb_f
{
this->bus = bus;
this->dev = dev;
for(uint8_t i = 0; i < 4; i++)
{
zone_led_count[i] = 1;
}
}
RGBFusion2GPUController::~RGBFusion2GPUController()