From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from polaris.svanheule.net (polaris.svanheule.net [84.16.241.116]) (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 85812349CD1 for ; Tue, 12 May 2026 11:09:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=84.16.241.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778584148; cv=none; b=CJqLjj7XytWMzvo5/aGmtDEkJxdbrbnjeKNNUJK8z2VmKjoTmEVQhQw0jUMlzmscHO8VzKzGQdrSmc4j4E8KhwOMALXSyN/ihYo1Nk3SZrPCPBwVbXiX7vJqcPsBlSGNQOFVYSsQYIHV8sRz7i3qtW5C9KKg98rNYfvP3z74VOs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778584148; c=relaxed/simple; bh=XaWeZYfJb9wM/PeQM/RzrWduqvb6jL1QGTBeE03a/wI=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=N07dzblNCzNDVeiVdvB14HwkGXqtrYL8SkiwneVYY3yWEkRJS1tBktFR3NhzY4BnATC3K9vxaHrJu56EagwBBvvjeE/ak5mICn5Ya50NwbvNRsesREwFdAOmC0EhFj0XRP1ZFPnz+BF1i++omvI60JggquUD+BNcGhpqPeZpI1E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=svanheule.net; spf=pass smtp.mailfrom=svanheule.net; dkim=pass (2048-bit key) header.d=svanheule.net header.i=@svanheule.net header.b=EOdq2qrj; arc=none smtp.client-ip=84.16.241.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=svanheule.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=svanheule.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=svanheule.net header.i=@svanheule.net header.b="EOdq2qrj" Received: from terra.vega.svanheule.net (2a02-1812-162d-3d00-c381-7255-a866-916d.ip6.access.telenet.be [IPv6:2a02:1812:162d:3d00:c381:7255:a866:916d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: sander@svanheule.net) by polaris.svanheule.net (Postfix) with ESMTPSA id BA7EF77E05C; Tue, 12 May 2026 13:08:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=svanheule.net; s=mail1707; t=1778584138; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=r+tTAsw6+5DoQDilDubfg/PaYw+55SsVFLGm4QSZPp8=; b=EOdq2qrjDqITF/+Jn8jPbu+M4OaTfFzksXWD58tSExj447ZLItCkAiyRWI8V9qSsvW9SPS MB5iD4U7fEHE+1lqqDWblh16+JUHTSHdEMjEihFn/B1mfkME5AWvzHfGYd8WOZGL1IlEtZ n/ooFvfT8Ti64Aqdq0ahHP1dL66bO9W6cZpn04M+5CBhYTl9bxx2BRm4buloNUSRF3McUP yhwYihsXzvDiAEdN3lxAgX1JG5Kh/rO2Ul3jAThDGENf06hUrsnHyoYnpHD3EAkpxjGORa HunBB9ZL7S/Dqz8MbKiYLPqwSefXGq6f2JDl0/WJWlc+gcCErQ0BPKI2rqO6tQ== From: Sander Vanheule To: Wim Van Sebroeck , Guenter Roeck , Rob Herring , Krzysztof Kozlowski , Conor Dooley Cc: Rustam Adilov , linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Sander Vanheule Subject: [PATCH 0/2] watchdog: realtek-otto: add fallback compatible Date: Tue, 12 May 2026 13:08:46 +0200 Message-ID: <20260512110848.106620-1-sander@svanheule.net> X-Mailer: git-send-email 2.54.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Like for the GPIO hardware of the Realtek Otto platform, add a fallback compatible for the watchdog hardware. For backward compatibility, the binding will still allow current single-compatible devicetrees to work, but new devicetrees, including new compatibles, should use a two-component compatible. This series serves to address comments regarding the device compatibles for the patches adding RTL9607C watchdog support [1]. [1] https://lore.kernel.org/lkml/20260509163101.722793-1-adilov@disroot.org/ Sander Vanheule (2): dt-bindings: watchdog: realtek,otto-wdt: Add fallback compatible watchdog: realtek-otto: add fallback compatible .../bindings/watchdog/realtek,otto-wdt.yaml | 19 ++++++++++++++----- drivers/watchdog/realtek_otto_wdt.c | 2 ++ 2 files changed, 16 insertions(+), 5 deletions(-) -- 2.54.0