1. 30 7月, 2014 1 次提交
  2. 15 7月, 2014 1 次提交
  3. 01 3月, 2014 1 次提交
  4. 19 2月, 2014 1 次提交
  5. 22 5月, 2013 1 次提交
  6. 06 9月, 2012 1 次提交
    • S
      memory: fix build when CONFIG_OF && !CONFIG_DDR · 7c304d7e
      Stephen Warren 提交于
      Commit e6b42eb6 "memory: emif: add device tree support to emif driver"
      added drivers/memory/of_memory.c, which references tables defined in
      lib/jedec_ddr_data.c. of_memory.c is compiled when CONFIG_OF, whereas
      jedec_ddr_data.c is compiled when CONFIG_DDR. This breaks the build
      when CONFIG_OF is defined but not CONFIG_DDR:
      
      drivers/built-in.o: In function `of_get_ddr_timings':
      drivers/memory/of_memory.c:138: undefined reference to `lpddr2_jedec_timings'
      drivers/built-in.o: In function `of_get_min_tck':
      drivers/memory/of_memory.c:62: undefined reference to `lpddr2_jedec_min_tck'
      make: *** [vmlinux] Error 1
      
      To solve this, only compile of_memory.c when CONFIG_OF && CONFIG_DDR,
      otherwise, stub out the functions.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      7c304d7e
  7. 05 9月, 2012 1 次提交
  8. 11 5月, 2012 2 次提交
  9. 02 5月, 2012 1 次提交