diff --git a/Controllers/LenovoMotherboardController/LenovoMotherboardController.cpp b/Controllers/LenovoMotherboardController/LenovoMotherboardController.cpp index 36eeae62..e3e1800e 100644 --- a/Controllers/LenovoMotherboardController/LenovoMotherboardController.cpp +++ b/Controllers/LenovoMotherboardController/LenovoMotherboardController.cpp @@ -1,13 +1,16 @@ -/*-----------------------------------------*\ -| LenovoMotherboardController.cpp | -| | -| Driver for Lenovo motherboards lighting | -| controller | -| | -| Guimard Morgan (morg) 12/26/2022 | -\*-----------------------------------------*/ -#include "LenovoMotherboardController.h" +/*---------------------------------------------------------*\ +| LenovoMotherboardController.cpp | +| | +| Driver for Lenovo motherboard | +| | +| Morgan Guimard (morg) 26 Dec 2022 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ + #include +#include "LenovoMotherboardController.h" LenovoMotherboardController::LenovoMotherboardController(hid_device* dev_handle, const hid_device_info& info) { diff --git a/Controllers/LenovoMotherboardController/LenovoMotherboardController.h b/Controllers/LenovoMotherboardController/LenovoMotherboardController.h index 1f0d4381..56179ed3 100644 --- a/Controllers/LenovoMotherboardController/LenovoMotherboardController.h +++ b/Controllers/LenovoMotherboardController/LenovoMotherboardController.h @@ -1,11 +1,14 @@ -/*-----------------------------------------*\ -| LenovoMotherboardController.cpp | -| | -| Driver for Lenovo motherboards lighting | -| controller - header file | -| | -| Guimard Morgan (morg) 12/26/2022 | -\*-----------------------------------------*/ +/*---------------------------------------------------------*\ +| LenovoMotherboardController.h | +| | +| Driver for Lenovo motherboard | +| | +| Morgan Guimard (morg) 26 Dec 2022 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ + #pragma once #include diff --git a/Controllers/LenovoMotherboardController/LenovoMotherboardControllerDetect.cpp b/Controllers/LenovoMotherboardController/LenovoMotherboardControllerDetect.cpp index d256697e..d185fc2b 100644 --- a/Controllers/LenovoMotherboardController/LenovoMotherboardControllerDetect.cpp +++ b/Controllers/LenovoMotherboardController/LenovoMotherboardControllerDetect.cpp @@ -1,3 +1,14 @@ +/*---------------------------------------------------------*\ +| LenovoMotherboardControllerDetect.cpp | +| | +| Detector for Lenovo motherboard | +| | +| Morgan Guimard (morg) 26 Dec 2022 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ + #include "Detector.h" #include "LenovoMotherboardController.h" #include "RGBController.h" diff --git a/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.cpp b/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.cpp index 1146c58a..e5356ce3 100644 --- a/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.cpp +++ b/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.cpp @@ -1,16 +1,17 @@ -/*-----------------------------------------*\ -| RGBController_LenovoMotherboard.h | -| | -| Generic RGB Interface for OpenRGB | -| Lenovo motherboards RGB USB Driver | -| | -| Guimard Morgan (morg) 12/26/2022 | -\*-----------------------------------------*/ +/*---------------------------------------------------------*\ +| RGBController_LenovoMotherboard.cpp | +| | +| RGBController for Lenovo motherboard | +| | +| Morgan Guimard (morg) 26 Dec 2022 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ -#include "RGBController_LenovoMotherboard.h" - -#include #include +#include +#include "RGBController_LenovoMotherboard.h" /**------------------------------------------------------------------*\ @name LenovoMotherboard mouse @@ -198,6 +199,6 @@ void RGBController_LenovoMotherboard::UpdateSingleLED(int /*led*/) } void RGBController_LenovoMotherboard::DeviceUpdateMode() -{ +{ DeviceUpdateLEDs(); } diff --git a/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.h b/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.h index 7f312a5d..8b196486 100644 --- a/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.h +++ b/Controllers/LenovoMotherboardController/RGBController_LenovoMotherboard.h @@ -1,11 +1,13 @@ -/*-----------------------------------------*\ -| RGBController_LenovoMotherboard.h | -| | -| Generic RGB Interface for OpenRGB | -| Lenovo motherboards RGB USB Driver | -| | -| Guimard Morgan (morg) 12/26/2022 | -\*-----------------------------------------*/ +/*---------------------------------------------------------*\ +| RGBController_LenovoMotherboard.h | +| | +| RGBController for Lenovo motherboard | +| | +| Morgan Guimard (morg) 26 Dec 2022 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ #pragma once