1. 21 5月, 2012 1 次提交
  2. 27 4月, 2012 1 次提交
    • P
      blackfin: fix ifdef fustercluck in mach-bf538/boards/ezkit.c · fa83af7e
      Paul Gortmaker 提交于
      This file has lots and lots of ifdef, around structure decls
      and structure usages.  The failure issue was that we would
      build the BF538-EZKIT_defconfig and get:
      
       arch/blackfin/mach-bf538/boards/ezkit.c:924:3: error: 'bfin_lq035q1_device'
       undeclared here (not in a function)
      
      even though the same ifdef _appeared_ to enable both the struct
      declaration and the code that used it.  Yet cpp was telling us we
      didn't have the struct, but we still had the usage of it.
      
      However, _appeared_ is the operative word.  After marking all the
      anonymous #endif with their parent #ifdef config options, it was
      _then_ clear that there was a misplaced #endif that was hiding
      the struct declaration.
      
      The real guts of the patch boils down to this:
      
      -#endif
      +#endif /* CONFIG_MTD_M25P80 */
      +#endif /* CONFIG_SPI_BFIN5XX */
       [...]
      -#endif  /* spi master and devices */
      
      but since I had to tag the #endif with their respective #ifdef
      options to find this misplaced SPI endif, it would be silly to
      then go and delete them all.  So they stay.
      
      Cc: Sonic Zhang <sonic.zhang@analog.com>
      Cc: Bob Liu <lliubbo@gmail.com>
      Acked-by: NMike Frysinger <vapier@gentoo.org>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      fa83af7e
  3. 09 1月, 2012 1 次提交
  4. 14 11月, 2011 1 次提交
  5. 23 7月, 2011 1 次提交
  6. 10 1月, 2011 2 次提交
  7. 22 10月, 2010 1 次提交
  8. 09 3月, 2010 5 次提交
  9. 15 12月, 2009 1 次提交
  10. 08 10月, 2009 2 次提交
  11. 07 10月, 2009 1 次提交
    • R
      Blackfin: mass clean up of copyright/licensing info · 96f1050d
      Robin Getz 提交于
      Bill Gatliff & David Brownell pointed out we were missing some
      copyrights, and licensing terms in some of the files in
      ./arch/blackfin, so this fixes things, and cleans them up.
      
      It also removes:
       - verbose GPL text(refer to the top level ./COPYING file)
       - file names (you are looking at the file)
       - bug url (it's in the ./MAINTAINERS file)
       - "or later" on GPL-2, when we did not have that right
      
      It also allows some Blackfin-specific assembly files to be under a BSD
      like license (for people to use them outside of Linux).
      Signed-off-by: NRobin Getz <robin.getz@analog.com>
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      96f1050d
  12. 17 9月, 2009 3 次提交
  13. 13 6月, 2009 1 次提交
  14. 07 1月, 2009 2 次提交
  15. 18 11月, 2008 2 次提交
  16. 09 10月, 2008 1 次提交
  17. 13 10月, 2008 1 次提交
  18. 08 10月, 2008 1 次提交
  19. 27 8月, 2008 1 次提交
  20. 05 8月, 2008 1 次提交
  21. 20 5月, 2008 1 次提交
  22. 10 5月, 2008 1 次提交
  23. 07 5月, 2008 1 次提交
  24. 25 4月, 2008 1 次提交
  25. 24 4月, 2008 1 次提交
  26. 23 4月, 2008 1 次提交
  27. 26 3月, 2008 2 次提交
  28. 09 2月, 2008 2 次提交