diff options
Diffstat (limited to 'arch/um/drivers/pty.c')
| -rw-r--r-- | arch/um/drivers/pty.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/pty.c b/arch/um/drivers/pty.c index 640bcdaad9f..1e3fd619a83 100644 --- a/arch/um/drivers/pty.c +++ b/arch/um/drivers/pty.c @@ -29,7 +29,7 @@ static void *pty_chan_init(char *str, int device, const struct chan_opts *opts)  {  	struct pty_chan *data; -	data = um_kmalloc(sizeof(*data)); +	data = kmalloc(sizeof(*data), UM_GFP_KERNEL);  	if (data == NULL)  		return NULL;  |