diff options
author | 2025-02-26 16:59:04 -0300 | |
---|---|---|
committer | 2025-03-11 12:51:21 +0100 | |
commit | 5395e09c803e20ea0713eaa3a44bc8dd36a009b7 (patch) | |
tree | 870f749ba3860c11dfc32228205556274ee1bc3b /drivers/gpu | |
parent | printk: Rename console_stop to console_suspend (diff) | |
download | wireguard-linux-5395e09c803e20ea0713eaa3a44bc8dd36a009b7.tar.xz wireguard-linux-5395e09c803e20ea0713eaa3a44bc8dd36a009b7.zip |
printk: Rename console_start to console_resume
The intent of console_start was to resume a previously suspended console,
so rename it accordingly.
Signed-off-by: Marcos Paulo de Souza <mpdesouza@suse.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Reviewed-by: John Ogness <john.ogness@linutronix.de>
Link: https://lore.kernel.org/r/20250226-printk-renaming-v1-4-0b878577f2e6@suse.com
[pmladek@suse.com: Fixed typo in the commit message. Updated also new drm_log.c.]
Signed-off-by: Petr Mladek <pmladek@suse.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/clients/drm_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/clients/drm_log.c b/drivers/gpu/drm/clients/drm_log.c index 755b41512d81..d239f1e3c456 100644 --- a/drivers/gpu/drm/clients/drm_log.c +++ b/drivers/gpu/drm/clients/drm_log.c @@ -332,7 +332,7 @@ static int drm_log_client_resume(struct drm_client_dev *client, bool _console_lo { struct drm_log *dlog = client_to_drm_log(client); - console_start(&dlog->con); + console_resume(&dlog->con); return 0; } |