Ignore:
Timestamp:
Aug 15, 2021, 1:07:08 AM (4 years ago)
Author:
Paul Smedley
Message:

Update linux source to 5.13.10

Location:
GPL/branches/uniaud32-next/include/linux
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/include/linux/kmod.h

    r32 r694  
    33#ifndef _LINUX_KMOD_H
    44#define _LINUX_KMOD_H
     5#include <asm/errno.h>
     6static inline int request_module(const char *name, ...) { return -ENOSYS; }
    57
    68#endif /* _LINUX_KMOD_H */
  • GPL/branches/uniaud32-next/include/linux/moduleparam.h

    r647 r694  
    6262   ulong, charp, bool or invbool, or XXX if you define param_get_XXX,
    6363   param_set_XXX and param_check_XXX. */
    64 #define module_param_named(name, value, type, perm)                        \
    65         param_check_##type(name, &(value));                                \
    66         module_param_call(name, param_set_##type, param_get_##type, &value, perm)
     64#define module_param_named(name, value, type, perm)
    6765
    6866#ifndef TARGET_OS2
  • GPL/branches/uniaud32-next/include/linux/rwsem.h

    r647 r694  
    1414#define up_read(x) up(x)
    1515#define up_write(x) up(x)
     16#define downgrade_write
    1617
    1718static inline int down_write_trylock(struct rw_semaphore *sem) {return 0;}
  • GPL/branches/uniaud32-next/include/linux/slab.h

    r692 r694  
    116116krealloc_array(void *p, size_t new_n, size_t new_size, gfp_t flags)
    117117{
    118         size_t bytes;
     118//      size_t bytes;
    119119
    120120//      if (check_mul_overflow(new_n, new_size, &bytes))
    121121//              return NULL;
    122122
    123         return krealloc(p, bytes, flags);
     123        return krealloc(p, new_n*new_size, flags);
    124124}
    125125
Note: See TracChangeset for help on using the changeset viewer.