]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
platform/x86: intel-rst: Move to intel sub-directory
authorKate Hsuan <hpa@redhat.com>
Fri, 20 Aug 2021 11:04:47 +0000 (14:04 +0300)
committerHans de Goede <hdegoede@redhat.com>
Fri, 20 Aug 2021 18:09:43 +0000 (20:09 +0200)
Move Intel RST driver to intel sub-directory to improve readability
and rename it from intel-rst.c to rst.c.

Signed-off-by: Kate Hsuan <hpa@redhat.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20210820110458.73018-10-andriy.shevchenko@linux.intel.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/Kconfig
drivers/platform/x86/Makefile
drivers/platform/x86/intel/Kconfig
drivers/platform/x86/intel/Makefile
drivers/platform/x86/intel/rst.c [moved from drivers/platform/x86/intel-rst.c with 100% similarity]

index 4e42ebac88921d0ddb85a2fdfe72faf845a4b5eb..a78678dede17631272fbdd88bcc1768f64f8241b 100644 (file)
@@ -1110,18 +1110,6 @@ config INTEL_IPS
          functionality.  If in doubt, say Y here; it will only load on
          supported platforms.
 
-config INTEL_RST
-        tristate "Intel Rapid Start Technology Driver"
-       depends on ACPI
-       help
-         This driver provides support for modifying parameters on systems
-         equipped with Intel's Rapid Start Technology. When put in an ACPI
-         sleep state, these devices will wake after either a configured
-         timeout or when the system battery reaches a critical state,
-         automatically copying memory contents to disk. On resume, the
-         firmware will copy the memory contents back to RAM and resume the OS
-         as usual.
-
 config INTEL_SMARTCONNECT
         tristate "Intel Smart Connect disabling driver"
        depends on ACPI
index bde20c13ceac11062e3b8503b00242b7ce61829d..2d8b2528b0abeff952150e4f8f98b5a351ceaaa1 100644 (file)
@@ -120,7 +120,6 @@ obj-$(CONFIG_WIRELESS_HOTKEY)               += wireless-hotkey.o
 
 # Intel uncore drivers
 obj-$(CONFIG_INTEL_IPS)                                += intel_ips.o
-obj-$(CONFIG_INTEL_RST)                                += intel-rst.o
 obj-$(CONFIG_INTEL_SMARTCONNECT)               += intel-smartconnect.o
 obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE)     += intel_speed_select_if/
 obj-$(CONFIG_INTEL_TURBO_MAX_3)                        += intel_turbo_max_3.o
index 379d9e425cc7a65313723b08e37a498ef9bf1d6c..fb1d1175fd0924dd5f45826ecd6377349abd2321 100644 (file)
@@ -61,4 +61,16 @@ config INTEL_PUNIT_IPC
          This driver provides support for Intel P-Unit Mailbox IPC mechanism,
          which is used to bridge the communications between kernel and P-Unit.
 
+config INTEL_RST
+       tristate "Intel Rapid Start Technology Driver"
+       depends on ACPI
+       help
+         This driver provides support for modifying parameters on systems
+         equipped with Intel's Rapid Start Technology. When put in an ACPI
+         sleep state, these devices will wake after either a configured
+         timeout or when the system battery reaches a critical state,
+         automatically copying memory contents to disk. On resume, the
+         firmware will copy the memory contents back to RAM and resume the OS
+         as usual.
+
 endif # X86_PLATFORM_DRIVERS_INTEL
index e8c2b1249f87e32397ab52be8d38ca834078499a..d0ab3202c1ac17077371f856f7263e7c6c0551fa 100644 (file)
@@ -20,3 +20,7 @@ intel_mrfld_pwrbtn-y                  := mrfld_pwrbtn.o
 obj-$(CONFIG_INTEL_MRFLD_PWRBTN)       += intel_mrfld_pwrbtn.o
 intel_punit_ipc-y                      := punit_ipc.o
 obj-$(CONFIG_INTEL_PUNIT_IPC)          += intel_punit_ipc.o
+
+# Intel Uncore drivers
+intel-rst-y                            := rst.o
+obj-$(CONFIG_INTEL_RST)                        += intel-rst.o