From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-03.galae.net (smtpout-03.galae.net [185.246.85.4]) (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 81F1E23E25B for ; Sat, 1 Nov 2025 00:45:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.85.4 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761957923; cv=none; b=eMf2AYs3M9h6Tomlliz2tZfUHpuSD1lHAEzPMzidzEUuFwP5CGBVnRGZCW6yW1oi1Rw/l7MvKeEJF/r64rsCizz9VMPkPDx++rWLVqiyifgDlegfZBzARtC3y7c0ej2aR9AsikU+N8cqBwS06654QutfLogoFlQ667XCGdriCqA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761957923; c=relaxed/simple; bh=1f6MR0MiAHQdxR7gpnJkL5A1h0+6bW3LcsOnk0DeMKE=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=UQV2+k92hDr80SHJQTBHc/RQuaPhtQeVJjaQjft0HZGi5g2bIvp+5gPm7Sv7bLVREwDaBKsXkA8gwOmrdCt9vYXQBjIBPLsy7+AFV9SebglkzwKw4m+pAT4jcgfA0hWpXTeMRRq1WeO+rOgY1x2kdmKD3qnAe5p9IHockJoxCY4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=AkQ5uQ3E; arc=none smtp.client-ip=185.246.85.4 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="AkQ5uQ3E" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-03.galae.net (Postfix) with ESMTPS id DCCDA4E41459 for ; Sat, 1 Nov 2025 00:45:19 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id B30A86070B; Sat, 1 Nov 2025 00:45:19 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id BA1911181ABB0; Sat, 1 Nov 2025 01:45:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1761957919; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=plz341VcZ204tSoODz8pylkp/qt2TMoiA4BDjs1J680=; b=AkQ5uQ3EP8GULGLHklk7NASbY0MWH4a2cDxolDspFTAoPNxHo+TIHljnR0368xOCs3Ee7Q eoFlhMdMupUYsyP9KEmVmj8GZcagZ/kZxqGBs9x1qCe6bBrHin+RVSTlTlO04mMAXSRzpU GeSUmtR7AGiiFnepfXR5p7rdY6kcRHxz+S9r3qHal3TsOIkF6PAi6tLZgA9n7mc51KR2JK UU2f3wFedca7X1azAYbyo5GLrEA+CeAMFV31HMhcRjLWxbefMnDjeVp/sUzcz0xAw9/40+ yCxI2oPjKlGyu0Jb6zBYqOKHPiC6HoUKLCi2XiS8A9RGJTxbJJoJI35WBgViVg== From: Alexandre Belloni Date: Sat, 01 Nov 2025 01:45:12 +0100 Subject: [PATCH 10/11] rtc: rx8025: stop setting max_user_freq Precedence: bulk X-Mailing-List: linux-rtc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <20251101-max_user_freq-v1-10-c9a274fd6883@bootlin.com> References: <20251101-max_user_freq-v1-0-c9a274fd6883@bootlin.com> In-Reply-To: <20251101-max_user_freq-v1-0-c9a274fd6883@bootlin.com> To: Joshua Kinard , Claudiu Beznea , Ovidiu Panait Cc: linux-rtc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Alexandre Belloni X-Mailer: b4 0.14.3 X-Last-TLS-Session-Version: TLSv1.3 max_user_freq has not been related to the hardware RTC since commit 6610e0893b8b ("RTC: Rework RTC code to use timerqueue for events"). Stop setting it from individual driver to avoid confusing new contributors. Signed-off-by: Alexandre Belloni --- drivers/rtc/rtc-rx8025.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/rtc/rtc-rx8025.c b/drivers/rtc/rtc-rx8025.c index aabe62c283a1..07119985fa83 100644 --- a/drivers/rtc/rtc-rx8025.c +++ b/drivers/rtc/rtc-rx8025.c @@ -565,8 +565,6 @@ static int rx8025_probe(struct i2c_client *client) clear_bit(RTC_FEATURE_ALARM, rx8025->rtc->features); } - rx8025->rtc->max_user_freq = 1; - set_bit(RTC_FEATURE_ALARM_RES_MINUTE, rx8025->rtc->features); clear_bit(RTC_FEATURE_UPDATE_INTERRUPT, rx8025->rtc->features); -- 2.51.1