Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use asm/type.h for kernel types #29

Merged
merged 1 commit into from
Mar 14, 2021

Commits on Mar 12, 2021

  1. Use asm/type.h for kernel types

    This ensures that right headers for types is included otherwise it can
    conflict for some platforms e.g. ppc64 where it includes the underlying
    files conditionally
    
    asm/types.h is
    
    if !defined(__SANE_USERSPACE_TYPES__) && defined(__powerpc64__) && !defined(__KERNEL__)
     include <asm-generic/int-l64.h>
    else
     include <asm-generic/int-ll64.h>
    endif
    
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    kraj committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    373e21a View commit details
    Browse the repository at this point in the history