configs: fedora: Fix CONFIG_I2C_DESIGNWARE_CORE being unset on x86_64 breaking touchpads and more
Before 6.12 CONFIG_I2C_DESIGNWARE_CORE was not user selectable, instead it was automatically selected by CONFIG_I2C_DESIGNWARE_PLATFORM / CONFIG_I2C_DESIGNWARE_PCI.
Commit 098c95d5 ("[PATCH] [redhat] AUTOMATIC: New configs") added a new redhat/configs/pending-fedora/generic/CONFIG_I2C_DESIGNWARE_CORE file which sets "# CONFIG_I2C_DESIGNWARE_CORE is not set".
This is causing all the other CONFIG_I2C_DESIGNWARE_* options to be disabled breaking anything connected to any designware I2C controllers, such as touchpads, accelerometers, fuel-gauges, USB Type-C controllers, camera sensors, etc.
configs/fedora/generic/CONFIG_I2C_DESIGNWARE_PLATFORM has CONFIG_I2C_DESIGNWARE_PLATFORM=y
So previously CONFIG_I2C_DESIGNWARE_CORE was always 'y' on Fedora, restore this behavior by creating redhat/configs/fedora/generic/CONFIG_I2C_DESIGNWARE_CORE with "CONFIG_I2C_DESIGNWARE_CORE=y"
And drop:
- redhat/configs/fedora/generic/x86/CONFIG_I2C_DESIGNWARE_CORE
- redhat/configs/fedora/generic/arm/aarch64/CONFIG_I2C_DESIGNWARE_CORE
which are now duplicates of fedora/generic/CONFIG_I2C_DESIGNWARE_CORE