1. 01 6月, 2015 1 次提交
  2. 30 5月, 2015 1 次提交
  3. 29 5月, 2015 1 次提交
  4. 28 5月, 2015 1 次提交
  5. 21 5月, 2015 3 次提交
  6. 14 5月, 2015 3 次提交
  7. 25 3月, 2015 1 次提交
  8. 19 2月, 2015 1 次提交
    • U
      ARM: make arrays containing machine compatible strings const · 543c5040
      Uwe Kleine-König 提交于
      The definition
      
      	static const char *axxia_dt_match[] __initconst = {
      		...
      
      defines a changable array of constant strings. That is you must not do:
      
      	*axxia_dt_match[0] = 'k';
      
      but
      
      	axxia_dt_match[0] = "different string";
      
      is fine. So the annotation __initconst is wrong and yields a compiler
      error when other really const variables are added with __initconst.
      
      As the struct machine_desc member dt_compat is declared as
      
      	const char *const *dt_compat;
      
      making the arrays const is the better alternative over changing all
      annotations to __initdata.
      Signed-off-by: NUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      543c5040
  9. 18 2月, 2015 1 次提交
  10. 13 1月, 2015 1 次提交
  11. 12 11月, 2014 3 次提交
  12. 09 11月, 2014 1 次提交
  13. 21 10月, 2014 2 次提交
  14. 18 9月, 2014 1 次提交
  15. 26 8月, 2014 1 次提交
  16. 28 7月, 2014 3 次提交
  17. 24 7月, 2014 1 次提交
  18. 17 6月, 2014 1 次提交
  19. 30 5月, 2014 2 次提交
  20. 22 5月, 2014 1 次提交
  21. 25 4月, 2014 10 次提交