audio-kernel: update chipset name

Update all audio drivers to use updated chipset name
in architecture specific configurations and the device
tree compatible strings.

Change-Id: Ib1abe643c6914c1b0b57ef110c7b60e23e356d97
Signed-off-by: Banajit Goswami <bgoswami@codeaurora.org>
diff --git a/Makefile b/Makefile
index 4e123b6..8143e3c 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@
 include $(srctree)/techpack/audio/config/sdxpoorwillsauto.conf
 export
 endif
-ifeq ($(CONFIG_ARCH_SDM855), y)
+ifeq ($(CONFIG_ARCH_SM8150), y)
 include $(srctree)/techpack/audio/config/sdm855auto.conf
 export
 endif
@@ -38,7 +38,7 @@
 LINUXINCLUDE    += \
                 -include $(srctree)/techpack/audio/config/sdxpoorwillsautoconf.h
 endif
-ifeq ($(CONFIG_ARCH_SDM855), y)
+ifeq ($(CONFIG_ARCH_SM8150), y)
 LINUXINCLUDE    += \
                 -include $(srctree)/techpack/audio/config/sdm855autoconf.h
 endif
diff --git a/asoc/Kbuild b/asoc/Kbuild
index eec5947..5369444 100644
--- a/asoc/Kbuild
+++ b/asoc/Kbuild
@@ -30,7 +30,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/asoc/codecs/Kbuild b/asoc/codecs/Kbuild
index 01a6e2d..c42cb7a 100644
--- a/asoc/codecs/Kbuild
+++ b/asoc/codecs/Kbuild
@@ -29,7 +29,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/asoc/codecs/aqt1000/Kbuild b/asoc/codecs/aqt1000/Kbuild
index f982951..6ee5d3f 100644
--- a/asoc/codecs/aqt1000/Kbuild
+++ b/asoc/codecs/aqt1000/Kbuild
@@ -23,7 +23,7 @@
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
 
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/asoc/codecs/wcd934x/Kbuild b/asoc/codecs/wcd934x/Kbuild
index 60b2485..48c9ccd 100644
--- a/asoc/codecs/wcd934x/Kbuild
+++ b/asoc/codecs/wcd934x/Kbuild
@@ -31,7 +31,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/asoc/codecs/wcd9360/Kbuild b/asoc/codecs/wcd9360/Kbuild
index a1b5fe4..d4f5406 100644
--- a/asoc/codecs/wcd9360/Kbuild
+++ b/asoc/codecs/wcd9360/Kbuild
@@ -16,7 +16,7 @@
 endif
 
 ifeq ($(KERNEL_BUILD), 0)
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/asoc/sdm855.c b/asoc/sdm855.c
index 5880846..e45bbb4 100644
--- a/asoc/sdm855.c
+++ b/asoc/sdm855.c
@@ -6746,11 +6746,11 @@
 };
 
 static const struct of_device_id sdm855_asoc_machine_of_match[]  = {
-	{ .compatible = "qcom,sdm855-asoc-snd-pahu",
+	{ .compatible = "qcom,sm8150-asoc-snd-pahu",
 	  .data = "pahu_codec"},
-	{ .compatible = "qcom,sdm855-asoc-snd-tavil",
+	{ .compatible = "qcom,sm8150-asoc-snd-tavil",
 	  .data = "tavil_codec"},
-	{ .compatible = "qcom,sdm855-asoc-snd-stub",
+	{ .compatible = "qcom,sm8150-asoc-snd-stub",
 	  .data = "stub_codec"},
 	{},
 };
diff --git a/dsp/Kbuild b/dsp/Kbuild
index df73215..9b43994 100644
--- a/dsp/Kbuild
+++ b/dsp/Kbuild
@@ -29,7 +29,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/dsp/codecs/Kbuild b/dsp/codecs/Kbuild
index 0f2adf7..96875c6 100644
--- a/dsp/codecs/Kbuild
+++ b/dsp/codecs/Kbuild
@@ -30,7 +30,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/ipc/Kbuild b/ipc/Kbuild
index 3cc021c..b666875 100644
--- a/ipc/Kbuild
+++ b/ipc/Kbuild
@@ -16,7 +16,7 @@
 ifeq ($(CONFIG_ARCH_SDM670), y)
 	TARGET_KERNEL_VERSION := 4.9
 endif
-ifeq ($(CONFIG_ARCH_SDM855), y)
+ifeq ($(CONFIG_ARCH_SM8150), y)
 	TARGET_KERNEL_VERSION := 4.14
 endif
 
@@ -42,7 +42,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
diff --git a/soc/Kbuild b/soc/Kbuild
index 36a2c88..f2b8840 100644
--- a/soc/Kbuild
+++ b/soc/Kbuild
@@ -29,7 +29,7 @@
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h
 	endif
-	ifeq ($(CONFIG_ARCH_SDM855), y)
+	ifeq ($(CONFIG_ARCH_SM8150), y)
 		include $(AUDIO_ROOT)/config/sdm855auto.conf
 		export
 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h