diff options
author | Hans de Goede <hdegoede@redhat.com> | 2023-03-13 16:02:41 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2023-03-16 18:14:52 +0300 |
commit | fd3c3584539026a708493a49f65d8ff3eb369002 (patch) | |
tree | 65dec7bcce605e7614f93fd789df00538f3faabe /drivers/platform/x86/pcengines-apuv2.c | |
parent | 06984c83e9afbb718f501b17b1f0a7a4ae6d0bb5 (diff) | |
download | linux-fd3c3584539026a708493a49f65d8ff3eb369002.tar.xz |
platform/x86: pcengines-apuv2: Drop platform:pcengines-apuv2 module-alias
The driver auto-loads based on the DMI modaliases and this platform
modalias is not necessary and broken:
1. Not necessary since the driver itself creates the platform_device,
so it is already loaded when the modalias might be used
2. From a quick scan of the code it does not create any platform-devices
called "platform:pcengines-apuv2"
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230313130241.778146-1-hdegoede@redhat.com
Diffstat (limited to 'drivers/platform/x86/pcengines-apuv2.c')
-rw-r--r-- | drivers/platform/x86/pcengines-apuv2.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/platform/x86/pcengines-apuv2.c b/drivers/platform/x86/pcengines-apuv2.c index d063d91db9bc..3aa63b18a2e1 100644 --- a/drivers/platform/x86/pcengines-apuv2.c +++ b/drivers/platform/x86/pcengines-apuv2.c @@ -291,5 +291,4 @@ MODULE_AUTHOR("Enrico Weigelt, metux IT consult <info@metux.net>"); MODULE_DESCRIPTION("PC Engines APUv2/APUv3 board GPIO/LEDs/keys driver"); MODULE_LICENSE("GPL"); MODULE_DEVICE_TABLE(dmi, apu_gpio_dmi_table); -MODULE_ALIAS("platform:pcengines-apuv2"); MODULE_SOFTDEP("pre: platform:" AMD_FCH_GPIO_DRIVER_NAME " platform:leds-gpio platform:gpio_keys_polled"); |