1. 30 Aug, 2014 38 commits
  2. 26 Aug, 2014 2 commits
    • Andrew Morton's avatar
      drivers/staging/unisys: fix build · e4a73e9c
      Andrew Morton authored
      drivers/staging/unisys/visorchipset/file.c:31: error: redefinition of typedef 'GUEST_PHYSICAL_ADDRESS'
      drivers/staging/unisys/common-spar/include/channels/controlvmchannel.h:23: note: previous declaration of 'GUEST_PHYSICAL_ADDRESS' was here
      
      Cc: Benjamin Romer <benjamin.romer@unisys.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      e4a73e9c
    • Honggang Li's avatar
      staging: unisys/virthba/virthba.c print u64 with %llu · 912f1028
      Honggang Li authored
      drivers/staging/unisys/virthba/virthba.c:520:2: warning: format ‘%u’
      expects argument of type ‘unsigned int’, but argument 4 has type ‘u64’
      [-Wformat=]
      drivers/staging/unisys/virthba/virthba.c:749:2: warning: format ‘%d’
      expects argument of type ‘int’, but argument 5 has type ‘u64’
      [-Wformat=]
      drivers/staging/unisys/virthba/virthba.c:1142:4: warning: format ‘%d’
      expects argument of type ‘int’, but argument 7 has type ‘u64’
      [-Wformat=]
      drivers/staging/unisys/virthba/virthba.c:1151:5: warning: format ‘%d’
      expects argument of type ‘int’, but argument 5 has type ‘u64’
      [-Wformat=]
      
      After apply the patch:
      linux-next]$ make C=1 drivers/staging/unisys/virthba/virthba.o
        CHK     include/config/kernel.release
        CHK     include/generated/uapi/linux/version.h
        CHK     include/generated/utsrelease.h
        CALL    scripts/checksyscalls.sh
        CHECK   drivers/staging/unisys/virthba/virthba.c
        CC [M]  drivers/staging/unisys/virthba/virthba.o
      Signed-off-by: default avatarHonggang Li <enjoymindful@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      912f1028