1. 20 7月, 2011 1 次提交
  2. 24 6月, 2011 2 次提交
    • M
      headers_install: fix __packed in exported kernel headers · f210735f
      Markus Trippelsdorf 提交于
      checkpatch.pl warns about using __attribute__((packed)) in kernel
      headers: "__packed is preferred over __attribute__((packed))". If one
      follows that advice it could cause problems in the exported header
      files, because the outside world doesn't know about this shortcut.
      
      For example busybox will fail to compile:
       CC      miscutils/ubi_attach_detach.o
       In file included from miscutils/ubi_attach_detach.c:27:0:
       /usr/include/mtd/ubi-user.h:330:3: error: conflicting types for ‘__packed’
       /usr/include/mtd/ubi-user.h:314:3: note: previous declaration of ‘__packed’ was here
      ...
      
      Fix the problem by substituting __packed with __attribute__((packed)) in
      the header_install.pl script.
      
      Cc: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
      CC: Joe Perches <joe@perches.com>
      Signed-off-by: NMarkus Trippelsdorf <markus@trippelsdorf.de>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      f210735f
    • M
      Merge branch 'kbuild-implicit-parser-rule' of... · 5e05981b
      Michal Marek 提交于
      Merge branch 'kbuild-implicit-parser-rule' of git://github.com/lacombar/linux-2.6 into kbuild/kbuild
      5e05981b
  3. 10 6月, 2011 14 次提交
  4. 07 6月, 2011 1 次提交
  5. 30 5月, 2011 22 次提交