From bf4afc53b77aeaa48b5409da5c8da6bb4eff7f43 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sat, 21 Feb 2026 16:37:42 -0800 Subject: Convert 'alloc_obj' family to use the new default GFP_KERNEL argument This was done entirely with mindless brute force, using git grep -l '\ --- drivers/tty/rpmsg_tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/tty/rpmsg_tty.c') diff --git a/drivers/tty/rpmsg_tty.c b/drivers/tty/rpmsg_tty.c index 6ada8e92bbf2..c5fd6d9b380f 100644 --- a/drivers/tty/rpmsg_tty.c +++ b/drivers/tty/rpmsg_tty.c @@ -134,7 +134,7 @@ static struct rpmsg_tty_port *rpmsg_tty_alloc_cport(void) struct rpmsg_tty_port *cport; int ret; - cport = kzalloc_obj(*cport, GFP_KERNEL); + cport = kzalloc_obj(*cport); if (!cport) return ERR_PTR(-ENOMEM); -- cgit v1.2.3