diff --git a/OpenRGB.pro b/OpenRGB.pro index b57bd36ba..a5e4690b6 100644 --- a/OpenRGB.pro +++ b/OpenRGB.pro @@ -439,7 +439,6 @@ win32:contains(QMAKE_TARGET.arch, x86_64) { copydata.commands += $(COPY_FILE) \"$$shell_path($$PWD/dependencies/PawnIO/modules/SmbusPIIX4.bin )\" \"$$shell_path($$DESTDIR)\" $$escape_expand(\n\t) copydata.commands += $(COPY_FILE) \"$$shell_path($$PWD/dependencies/PawnIO/modules/SmbusI801.bin )\" \"$$shell_path($$DESTDIR)\" $$escape_expand(\n\t) copydata.commands += $(COPY_FILE) \"$$shell_path($$PWD/dependencies/PawnIO/modules/SmbusNCT6793.bin )\" \"$$shell_path($$DESTDIR)\" $$escape_expand(\n\t) - copydata.commands += $(COPY_FILE) \"$$shell_path($$PWD/dependencies/PawnIO/modules/SmbusIntelSkylakeIMC.bin )\" \"$$shell_path($$DESTDIR)\" $$escape_expand(\n\t) copydata.commands += $(COPY_FILE) \"$$shell_path($$PWD/dependencies/PawnIO/modules/LpcIO.bin )\" \"$$shell_path($$DESTDIR)\" $$escape_expand(\n\t) first.depends = $(first) copydata export(first.depends) diff --git a/dependencies/PawnIO/modules/SmbusIntelSkylakeIMC.bin b/dependencies/PawnIO/modules/SmbusIntelSkylakeIMC.bin deleted file mode 100644 index c96ec686d..000000000 Binary files a/dependencies/PawnIO/modules/SmbusIntelSkylakeIMC.bin and /dev/null differ diff --git a/i2c_smbus/Windows/i2c_smbus_pawnio.cpp b/i2c_smbus/Windows/i2c_smbus_pawnio.cpp index e493e17c7..fe643f974 100644 --- a/i2c_smbus/Windows/i2c_smbus_pawnio.cpp +++ b/i2c_smbus/Windows/i2c_smbus_pawnio.cpp @@ -385,15 +385,6 @@ bool i2c_smbus_pawnio_detect() ResourceManager::get()->RegisterI2CBus(bus); } - /*-----------------------------------------------------*\ - | Try to load Intel Skylake IMC SMBus driver | - \*-----------------------------------------------------*/ - if(i2c_smbus_pawnio::start_pawnio("SmbusIntelSkylakeIMC.bin", &pawnio_handle) == S_OK) - { - bus = new i2c_smbus_pawnio(pawnio_handle, "Intel Skylake IMC"); - ResourceManager::get()->RegisterI2CBus(bus); - } - return(true); }