Skip to content

Commit

Permalink
Fix whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
synaptics-lspintzyk committed Dec 21, 2021
1 parent 5736ebe commit f9bc659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/evdi_ioc32.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static int compat_evdi_connect(struct file *file,

#if KERNEL_VERSION(5, 0, 0) <= LINUX_VERSION_CODE && KERNEL_VERSION(5, 14, 0) >= LINUX_VERSION_CODE
request = compat_alloc_user_space(sizeof(*request));
#else
#else
request = kmalloc(sizeof(*request), GFP_USER);
#endif
#if KERNEL_VERSION(5, 0, 0) <= LINUX_VERSION_CODE || defined(EL8)
Expand Down Expand Up @@ -95,7 +95,7 @@ static int compat_evdi_grabpix(struct file *file,

#if KERNEL_VERSION(5, 0, 0) <= LINUX_VERSION_CODE && KERNEL_VERSION(5, 14, 0) >= LINUX_VERSION_CODE
request = compat_alloc_user_space(sizeof(*request));
#else
#else
request = kmalloc(sizeof(*request), GFP_USER);
#endif
#if KERNEL_VERSION(5, 0, 0) <= LINUX_VERSION_CODE || defined(EL8)
Expand Down

0 comments on commit f9bc659

Please sign in to comment.