From 6be960ae715236b62f79bc1d131dfca7761aa021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Fri, 15 Sep 2023 12:36:25 +0200 Subject: [PATCH] drivers: rtc: drop printk statement from RTC Shell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove a printk forgotten in rtc get command. Signed-off-by: Benjamin Cabé --- drivers/rtc/rtc_shell.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/rtc/rtc_shell.c b/drivers/rtc/rtc_shell.c index c6de3f0a632..8dcaf46f875 100644 --- a/drivers/rtc/rtc_shell.c +++ b/drivers/rtc/rtc_shell.c @@ -197,8 +197,6 @@ static int cmd_get(const struct shell *sh, size_t argc, char **argv) { const struct device *dev = device_get_binding(argv[1]); - printk("in RTC Shell Get\n"); - if (!device_is_ready(dev)) { shell_error(sh, "device %s not ready", argv[1]); return -ENODEV;