From 1b538d7be2bbdc2d78e48caecc1b33fb0fbdde82 Mon Sep 17 00:00:00 2001 From: lxoliva Date: Thu, 18 May 2023 00:19:10 +0000 Subject: [PATCH] GNU Linux-libre 5.15.112-gnu git-svn-id: http://www.fsfla.org/svn/fsfla/software/linux-libre/scripts@19277 559672b5-ba27-0410-b829-e8f1faed8b1b --- deblob-5.15 | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/deblob-5.15 b/deblob-5.15 index 4d406ed7ecb..b630c57ea70 100755 --- a/deblob-5.15 +++ b/deblob-5.15 @@ -3825,14 +3825,26 @@ clean_kconfig drivers/i2c/Kconfig I2C_SLAVE_EEPROM clean_mk CONFIG_I2C_SLAVE_EEPROM drivers/i2c/Makefile announce MHI_BUS - "Modem Host Interface (MHI) bus" -reject_firmware drivers/bus/mhi/core/boot.c -clean_kconfig drivers/bus/mhi/Kconfig MHI_BUS -clean_mk CONFIG_MHI_BUS drivers/bus/mhi/core/Makefile +if test -f drivers/bus/mhi/host/boot.c; then + reject_firmware drivers/bus/mhi/host/boot.c + clean_kconfig drivers/bus/mhi/host/Kconfig MHI_BUS + clean_mk CONFIG_MHI_BUS drivers/bus/mhi/host/Makefile +else + reject_firmware drivers/bus/mhi/core/boot.c + clean_kconfig drivers/bus/mhi/Kconfig MHI_BUS + clean_mk CONFIG_MHI_BUS drivers/bus/mhi/core/Makefile +fi announce MHI_BUS_PCI_GENERIC - "MHI PCI controller driver" -clean_blob drivers/bus/mhi/pci_generic.c -clean_kconfig drivers/bus/mhi/Kconfig MHI_BUS_PCI_GENERIC -clean_mk CONFIG_MHI_BUS_PCI_GENERIC drivers/bus/mhi/Makefile +if test -f drivers/bus/mhi/host/pci_generic.c; then + clean_blob drivers/bus/mhi/host/pci_generic.c + clean_kconfig drivers/bus/mhi/host/Kconfig MHI_BUS_PCI_GENERIC + clean_mk CONFIG_MHI_BUS_PCI_GENERIC drivers/bus/mhi/host/Makefile +else + clean_blob drivers/bus/mhi/pci_generic.c + clean_kconfig drivers/bus/mhi/Kconfig MHI_BUS_PCI_GENERIC + clean_mk CONFIG_MHI_BUS_PCI_GENERIC drivers/bus/mhi/Makefile +fi # Greybus -- 2.31.1