From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 9FA8D409629; Fri, 29 May 2026 20:01:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780084876; cv=none; b=l0IZqq60tdg/knf3GUseGHuYlVgnKyY6oz7iCLskYrE4qzUy+bxGuqGUWVcuv6lrnKCOmDFZhOUiby4pRzis1BVmwliOfbpU/mr4gHRDgUeEHe0eENuDfQFuimf8gJTkSrgZbsi7nsjverldDmo41oa+zxzgfL6IYHibPep01Uw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780084876; c=relaxed/simple; bh=XLitJgpfGmRutMPFJzOM1pjEY3gn7ksLn0f7TeCcaaM=; h=Date:Message-ID:From:To:Cc:Subject:References:MIME-Version: Content-Type; b=JttogS4UNe/SvCk/mQwXAJ9uSC7WVY2xV2TXxyakThDOFFCbOJQ7ocqFowIclq7OCOrAzKbiu8s25U6GNNAyEmsEokCfyDeGjMBYdut9iMe0tSVOb3sMzIwjgowuNntqBWTAsaiWEP0TkmAKmuZytDcrZXwdbe6FYDYUEGk4Egc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=hVTgFGFP; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="hVTgFGFP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DA3F41F00893; Fri, 29 May 2026 20:01:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780084875; bh=LhRFAgSNvBh+ZqD31SHVs+HFkLsPpwGrlWZRmKcDpmg=; h=Date:From:To:Cc:Subject:References; b=hVTgFGFPlkC2+XDoaYA6/zfeQRv0hlPIcTW4ASFNt+kqI/ihcbO1x/hvzTXVQQTyv uZ1Nuzx5nAypR5GKmnDHxW/sznpSPcbTrXP8122glU7mQkjvN0+1lah4NbhqtkvKAS BPc7pH9yFRKEDiJqpUVrLwFJmorg6hI2KzGJVyTSuEWkVYU1WXTdhihbd03ICWdiHu j9qjL/uv+NDRjCEiJYlDFdNNNh50WHE7tReNtm1Y8oIy8ZjzvBN/SNIEzYQguIZUty JyU/rEqXTT7827J/9FWoIOT9G07NYNG38vc+0R9Gi+0qFykcVxuaboHOpImytrOzG6 REHFmH5t+M6XA== Date: Fri, 29 May 2026 22:01:13 +0200 Message-ID: <20260529195557.995298795@kernel.org> User-Agent: quilt/0.69 From: Thomas Gleixner To: LKML Cc: David Woodhouse , Miroslav Lichvar , John Stultz , Stephen Boyd , Anna-Maria Behnsen , Frederic Weisbecker , thomas.weissschuh@linutronix.de, Arthur Kiyanovski , Rodolfo Giometti , Vincent Donnefort , Marc Zyngier , Oliver Upton , kvmarm@lists.linux.dev, Oliver Upton , Richard Cochran , netdev@vger.kernel.org, Takashi Iwai , Miri Korenblit , Johannes Berg , Jacob Keller , Tony Nguyen , Saeed Mahameed , Peter Hilber , "Michael S. Tsirkin" , virtualization@lists.linux.dev, linux-wireless@vger.kernel.org, linux-sound@vger.kernel.org, David Woodhouse , Vadim Fedorenko Subject: [patch V2 21/25] ALSA: hda/common: Use system_device_crosststamp::sys_systime References: <20260529193435.921555544@kernel.org> Precedence: bulk X-Mailing-List: linux-wireless@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 From: Thomas Gleixner sys_systime is an alias for sys_realtime. The latter will be removed so switch the code over to the new naming scheme. No functional change. Signed-off-by: Thomas Gleixner Tested-by: Arthur Kiyanovski Reviewed-by: David Woodhouse Reviewed-by: Jacob Keller --- sound/hda/common/controller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/hda/common/controller.c +++ b/sound/hda/common/controller.c @@ -525,7 +525,7 @@ static int azx_get_time_info(struct snd_ break; default: - *system_ts = ktime_to_timespec64(xtstamp.sys_realtime); + *system_ts = ktime_to_timespec64(xtstamp.sys_systime); break; }