From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id F0D49C0015E for ; Sat, 12 Aug 2023 08:21:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233392AbjHLIV3 (ORCPT ); Sat, 12 Aug 2023 04:21:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46478 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230092AbjHLIVZ (ORCPT ); Sat, 12 Aug 2023 04:21:25 -0400 Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D040E2706 for ; Sat, 12 Aug 2023 01:21:26 -0700 (PDT) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 4CB5C2189C; Sat, 12 Aug 2023 08:21:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1691828485; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=VnmOoVcBZDfMJs4q91/3O477m9GJ5p+nugyF9h38FXM=; b=WiaAOehZJVq9xVoixizSzOzHAuJA0zkR0CbUeZbf7d3n529/T1xfV3h4bqkx1zah1eadk0 4K4Rw7eMguswJ6DWA1MTbNpGiCFMii/20k6pvUIRoYTEo9x58e7P+WZHpU9kj++uKMWpac Aat8ZkJSlWBnC6GoC57nNEoSTyU/agk= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1691828485; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=VnmOoVcBZDfMJs4q91/3O477m9GJ5p+nugyF9h38FXM=; b=wlyiZzJLfr/+XfJaklmFrQ3+3meVihmdF2SUw8dFY9Nwblfx/qz7vimicq5yKtxcWFV6vl Oba19oXYRoGsvWBA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id E968313357; Sat, 12 Aug 2023 08:21:24 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id RuUEOARB12TpFwAAMHmgww (envelope-from ); Sat, 12 Aug 2023 08:21:24 +0000 Date: Sat, 12 Aug 2023 10:21:24 +0200 Message-ID: <877cq0r7qz.wl-tiwai@suse.de> From: Takashi Iwai To: Pierre-Louis Bossart Cc: Maarten Lankhorst , alsa-devel@alsa-project.org, Maarten Lankhorst , Jaroslav Kysela , Takashi Iwai , Cezary Rojewski , Liam Girdwood , Peter Ujfalusi , Bard Liao , Ranjani Sridharan , Kai Vehmanen , Mark Brown , Daniel Baluta , linux-kernel@vger.kernel.org, sound-open-firmware@alsa-project.org Subject: Re: [PATCH v3 3/9] ALSA: hda/i915: Add an allow_modprobe argument to snd_hdac_i915_init In-Reply-To: <451ab8a3-7c75-4aab-0b8b-554d9c44c34c@linux.intel.com> References: <20230807090045.198993-1-maarten.lankhorst@linux.intel.com> <20230807090045.198993-4-maarten.lankhorst@linux.intel.com> <451ab8a3-7c75-4aab-0b8b-554d9c44c34c@linux.intel.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/27.2 Mule/6.0 MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 07 Aug 2023 16:08:32 +0200, Pierre-Louis Bossart wrote: > > > > On 8/7/23 04:00, Maarten Lankhorst wrote: > > Xe is a new GPU driver that re-uses the display (and sound) code from > > i915. It's no longer possible to load i915, as the GPU can be driven > > by the xe driver instead. > > > > The new behavior will return -EPROBE_DEFER, and wait for a compatible > > driver to be loaded instead of modprobing i915. > > > > Converting all drivers at the same time is a lot of work, instead we > > will convert each user one by one. > > > > Changes since v1: > > - Use dev_err_probe to set a probe reason for debugfs' deferred_devices. > > You want the changes below the --- line ... Note that there are subsystems preferring keeping the version change logs in the commit log (typically found in drm trees), although majority of subsystems (including sound) want rather cleaner logs, AFAIK. Takashi