Hi Tobin,

[auto build test ERROR on staging/staging-testing]
[also build test ERROR on v4.11-rc1]
[if your patch is applied to the wrong git tree, please drop us a note to help 
improve the system]

url:    
https://github.com/0day-ci/linux/commits/Tobin-C-Harding/clean-up-ks_sdio_interrupt/20170307-162643
config: x86_64-randconfig-x018-201710 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   In file included from include/asm-generic/int-ll64.h:10:0,
                    from include/uapi/asm-generic/types.h:6,
                    from arch/x86/include/uapi/asm/types.h:4,
                    from include/uapi/linux/types.h:4,
                    from include/linux/types.h:5,
                    from include/linux/firmware.h:4,
                    from drivers/staging/ks7010/ks7010_sdio.c:13:
>> include/uapi/asm-generic/int-ll64.h:19:1: error: expected '=', ',', ';', 
>> 'asm' or '__attribute__' before 'typedef'
    typedef __signed__ char __s8;
    ^~~~~~~
   In file included from include/linux/firmware.h:4:0,
                    from drivers/staging/ks7010/ks7010_sdio.c:13:
>> include/linux/types.h:98:10: error: unknown type name '__s8'
    typedef  __s8  int8_t;
             ^~~~
   In file included from include/linux/quota.h:42:0,
                    from include/linux/fs.h:214,
                    from include/linux/net.h:28,
                    from include/linux/skbuff.h:29,
                    from include/linux/if_ether.h:23,
                    from include/uapi/linux/ethtool.h:18,
                    from include/linux/ethtool.h:17,
                    from include/linux/netdevice.h:42,
                    from drivers/staging/ks7010/ks_wlan.h:24,
                    from drivers/staging/ks7010/ks7010_sdio.c:19:
>> include/uapi/linux/dqblk_xfs.h:53:2: error: unknown type name '__s8'
     __s8  d_version; /* version of this structure */
     ^~~~
   include/uapi/linux/dqblk_xfs.h:54:2: error: unknown type name '__s8'
     __s8  d_flags; /* FS_{USER,PROJ,GROUP}_QUOTA */
     ^~~~
   include/uapi/linux/dqblk_xfs.h:155:2: error: unknown type name '__s8'
     __s8  qs_version; /* version number for future changes */
     ^~~~
   include/uapi/linux/dqblk_xfs.h:157:2: error: unknown type name '__s8'
     __s8  qs_pad;  /* unused */
     ^~~~
   include/uapi/linux/dqblk_xfs.h:199:2: error: unknown type name '__s8'
     __s8   qs_version; /* version for future changes */
     ^~~~
   In file included from include/linux/ethtool.h:17:0,
                    from include/linux/netdevice.h:42,
                    from drivers/staging/ks7010/ks_wlan.h:24,
                    from drivers/staging/ks7010/ks7010_sdio.c:19:
>> include/uapi/linux/ethtool.h:1756:2: error: unknown type name '__s8'
     __s8 link_mode_masks_nwords;
     ^~~~
   In file included from include/linux/netdevice.h:53:0,
                    from drivers/staging/ks7010/ks_wlan.h:24,
                    from drivers/staging/ks7010/ks7010_sdio.c:19:
>> include/uapi/linux/if_bonding.h:106:2: error: unknown type name '__s8'
     __s8 link;
     ^~~~
   include/uapi/linux/if_bonding.h:107:2: error: unknown type name '__s8'
     __s8 state;
     ^~~~

vim +19 include/uapi/asm-generic/int-ll64.h

8a1ab315 David Howells 2012-10-04   3   *
8a1ab315 David Howells 2012-10-04   4   * Integer declarations for 
architectures which use "long long"
8a1ab315 David Howells 2012-10-04   5   * for 64-bit types.
8a1ab315 David Howells 2012-10-04   6   */
8a1ab315 David Howells 2012-10-04   7  
8a1ab315 David Howells 2012-10-04   8  #ifndef _UAPI_ASM_GENERIC_INT_LL64_H
8a1ab315 David Howells 2012-10-04   9  #define _UAPI_ASM_GENERIC_INT_LL64_H
8a1ab315 David Howells 2012-10-04  10  
8a1ab315 David Howells 2012-10-04  11  #include <asm/bitsperlong.h>
8a1ab315 David Howells 2012-10-04  12  
8a1ab315 David Howells 2012-10-04  13  #ifndef __ASSEMBLY__
8a1ab315 David Howells 2012-10-04  14  /*
8a1ab315 David Howells 2012-10-04  15   * __xx is ok: it doesn't pollute the 
POSIX namespace. Use these in the
8a1ab315 David Howells 2012-10-04  16   * header files exported to user space
8a1ab315 David Howells 2012-10-04  17   */
8a1ab315 David Howells 2012-10-04  18  
8a1ab315 David Howells 2012-10-04 @19  typedef __signed__ char __s8;
8a1ab315 David Howells 2012-10-04  20  typedef unsigned char __u8;
8a1ab315 David Howells 2012-10-04  21  
8a1ab315 David Howells 2012-10-04  22  typedef __signed__ short __s16;
8a1ab315 David Howells 2012-10-04  23  typedef unsigned short __u16;
8a1ab315 David Howells 2012-10-04  24  
8a1ab315 David Howells 2012-10-04  25  typedef __signed__ int __s32;
8a1ab315 David Howells 2012-10-04  26  typedef unsigned int __u32;
8a1ab315 David Howells 2012-10-04  27  

:::::: The code at line 19 was first introduced by commit
:::::: 8a1ab3155c2ac7fbe5f2038d6e26efeb607a1498 UAPI: (Scripted) Disintegrate 
include/asm-generic

:::::: TO: David Howells <dhowe...@redhat.com>
:::::: CC: David Howells <dhowe...@redhat.com>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Attachment: .config.gz
Description: application/gzip

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to