From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DCA0422259F; Mon, 20 Apr 2026 15:56:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700596; cv=none; b=rAdklCfvj0fWS+kBR6FJTg3/1HmlOKKFAKgONYRgPEYr3u50CRagB0OhEjY3qEbirk4jNuW11nJSbKnmqV15u1n95hZnTOMHTDEhWqDQh4DzcYjd7y7XeIBkaWAzBQWgeEFuAi/ysloa/hHuIkFWlbYfgHDf67eiTjTa9sIVa+U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700596; c=relaxed/simple; bh=JwTW8QWniyW4HKTH7yHB/1C2tC8NQr9PN19EZyKmnrQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UGkY1OKiFrEXl7C6BIGd97dyUvMsXwTfdbmG0PGWwLjc7wzUlcAHNSjBx/08d1AkMnOYTZnWH4dZ57+0v2VYfl6o/JYpvGHN17w/mmKuEXTOd7qfIMzDtGlTmMGWS1FmSVFb6LaXIsNhqvyf7YPlioQo7s95qz+24zwj+K3o/Ik= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=i7u0Zk/+; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="i7u0Zk/+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 744B9C19425; Mon, 20 Apr 2026 15:56:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700596; bh=JwTW8QWniyW4HKTH7yHB/1C2tC8NQr9PN19EZyKmnrQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=i7u0Zk/+mqnmCYPliFWjd3qn47VcFuuuqBtBmBibHhDfV9tBJQvwv1W6ocRr4tkTU v31Y3gSrcrcOhroSFBiCWe3/Xk67x8C2TMwEBdJFXdc1Ube7Xqkq8mF5yMo/PRgj+M nfRbhaKXCkvCLFn4R2j7+tzIPB/pm5E7oGtZQadY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Frank Zhang , Takashi Iwai , Sasha Levin Subject: [PATCH 6.18 014/198] ALSA:usb:qcom: add AUXILIARY_BUS to Kconfig dependencies Date: Mon, 20 Apr 2026 17:39:53 +0200 Message-ID: <20260420153936.129574450@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153935.605963767@linuxfoundation.org> References: <20260420153935.605963767@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Frank Zhang [ Upstream commit b8bee48e38f2ddbdba5e58bc54ef54bb7d8d341b ] The build can fail with: ERROR: modpost: "__auxiliary_driver_register" [sound/usb/qcom/snd-usb-audio-qmi.ko] undefined! ERROR: modpost: "auxiliary_driver_unregister" [sound/usb/qcom/snd-usb-audio-qmi.ko] undefined! Select AUXILIARY_BUS when SND_USB_AUDIO_QMI is enabled. Signed-off-by: Frank Zhang Link: https://patch.msgid.link/20260317102527.556248-1-rmxpzlb@gmail.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/usb/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/usb/Kconfig b/sound/usb/Kconfig index 9b890abd96d34..b4588915efa11 100644 --- a/sound/usb/Kconfig +++ b/sound/usb/Kconfig @@ -192,6 +192,7 @@ config SND_USB_AUDIO_QMI tristate "Qualcomm Audio Offload driver" depends on QCOM_QMI_HELPERS && SND_USB_AUDIO && SND_SOC_USB depends on USB_XHCI_HCD && USB_XHCI_SIDEBAND + select AUXILIARY_BUS help Say Y here to enable the Qualcomm USB audio offloading feature. -- 2.53.0