31 Aug, 2016

1 commit

  • We get 2 warnings when biuld kernel with W=1:
    drivers/memory/of_memory.c:30:30: warning: no previous prototype for 'of_get_min_tck' [-Wmissing-prototypes]
    drivers/memory/of_memory.c:106:30: warning: no previous prototype for 'of_get_ddr_timings' [-Wmissing-prototypes]

    In fact, these functions are declared in drivers/memory/of_memory.h
    so this patch add missing header dependencies.

    Signed-off-by: Baoyou Xie
    Signed-off-by: Greg Kroah-Hartman

    Baoyou Xie
     

02 May, 2016

1 commit


05 Sep, 2012

1 commit

  • Device tree support for the EMIF driver. LPDDR2 generic timings
    extraction from device is managed using couple of helper
    functions which can be used by other memory controller
    drivers.

    Reviewed-by: Benoit Cousson
    Reviewed-by: Grant Likely
    Tested-by: Lokesh Vutla
    Signed-off-by: Aneesh V
    Signed-off-by: Santosh Shilimkar
    Cc: Greg Kroah-Hartman
    Signed-off-by: Greg Kroah-Hartman

    Aneesh V