]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: Intel: ssp-common: relocate source file
authorBrent Lu <brent.lu@intel.com>
Wed, 27 Mar 2024 16:23:51 +0000 (11:23 -0500)
committerMark Brown <broonie@kernel.org>
Thu, 28 Mar 2024 13:58:10 +0000 (13:58 +0000)
Moving ssp-common source and header files from sound/soc/intel/boards
directory to sound/soc/intel/common directory and rename the source
file. Keep file content unchanged for tracking purpose.

Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Signed-off-by: Brent Lu <brent.lu@intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://msgid.link/r/20240327162408.63953-2-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/Makefile
sound/soc/intel/boards/sof_board_helpers.h
sound/soc/intel/boards/sof_cirrus_common.h
sound/soc/intel/boards/sof_maxim_common.h
sound/soc/intel/boards/sof_nuvoton_common.h
sound/soc/intel/boards/sof_realtek_common.h
sound/soc/intel/common/Makefile
sound/soc/intel/common/soc-acpi-intel-ssp-common.c [moved from sound/soc/intel/boards/sof_ssp_common.c with 100% similarity]
sound/soc/intel/common/sof_ssp_common.h [moved from sound/soc/intel/boards/sof_ssp_common.h with 100% similarity]

index 8f711be46c43ef023cdfd3cd0f3edf562cf2fabc..a93b658ed67285ce3798a6c14c46175942c209ab 100644 (file)
@@ -101,8 +101,5 @@ obj-$(CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON) += snd-soc-intel-sof-cirrus-common
 snd-soc-intel-sof-nuvoton-common-objs += sof_nuvoton_common.o
 obj-$(CONFIG_SND_SOC_INTEL_SOF_NUVOTON_COMMON) += snd-soc-intel-sof-nuvoton-common.o
 
-snd-soc-intel-sof-ssp-common-objs += sof_ssp_common.o
-obj-$(CONFIG_SND_SOC_INTEL_SOF_SSP_COMMON) += snd-soc-intel-sof-ssp-common.o
-
 snd-soc-intel-sof-board-helpers-objs += sof_board_helpers.o
 obj-$(CONFIG_SND_SOC_INTEL_SOF_BOARD_HELPERS) += snd-soc-intel-sof-board-helpers.o
index b6a83ca14fa82aeaf9a02ef16c03c5e35048c415..bd5c48cd0649ba60778d1a332a8f329358789c7a 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <sound/soc.h>
 #include "sof_hdmi_common.h"
-#include "sof_ssp_common.h"
+#include "../common/sof_ssp_common.h"
 
 /*
  * Common board quirks: from bit 8 to 31, LSB 8 bits reserved for machine
index d4ecf8d023d190382dc3a5e0b91e2b22374cfdd1..445621466f05c86fae73a09886017101efafda73 100644 (file)
@@ -9,7 +9,7 @@
 #define __SOF_CIRRUS_COMMON_H
 
 #include <sound/soc.h>
-#include "sof_ssp_common.h"
+#include "../common/sof_ssp_common.h"
 
 /*
  * Cirrus Logic CS35L41/CS35L53
index fe0212fbad8eabaca1ee402f73844ef43f390d2e..63054bcd287bd4288110acb2a2a86ac5235b50f8 100644 (file)
@@ -11,7 +11,7 @@
 #define __SOF_MAXIM_COMMON_H
 
 #include <sound/soc.h>
-#include "sof_ssp_common.h"
+#include "../common/sof_ssp_common.h"
 
 /*
  * Maxim MAX98373
index 53a84f9a67c0ebae882d0a758562f6fc17adfd26..af2e58b1d393b9fb7aec2c752d957bbed4b2a59b 100644 (file)
@@ -9,7 +9,7 @@
 #define __SOF_NUVOTON_COMMON_H
 
 #include <sound/soc.h>
-#include "sof_ssp_common.h"
+#include "../common/sof_ssp_common.h"
 
 /*
  * Nuvoton NAU8318
index e3fa2924c1c1b84951392e275a4766492fbd1d03..99b23d96521a2bfeda12e73817ec8b9837aea32d 100644 (file)
@@ -11,7 +11,7 @@
 #define __SOF_REALTEK_COMMON_H
 
 #include <sound/soc.h>
-#include "sof_ssp_common.h"
+#include "../common/sof_ssp_common.h"
 
 /*
  * Realtek ALC1011
index f7370e5b4e9e418d4e2bd4aa9c9e374414e4e05d..15c8a64368c57c912a9ca42bb735db166371bfbe 100644 (file)
@@ -17,3 +17,6 @@ snd-soc-acpi-intel-match-objs := soc-acpi-intel-byt-match.o soc-acpi-intel-cht-m
 
 obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o snd-soc-sst-ipc.o
 obj-$(CONFIG_SND_SOC_ACPI_INTEL_MATCH) += snd-soc-acpi-intel-match.o
+
+snd-soc-intel-sof-ssp-common-objs += soc-acpi-intel-ssp-common.o
+obj-$(CONFIG_SND_SOC_INTEL_SOF_SSP_COMMON) += snd-soc-intel-sof-ssp-common.o