Skip to content
  • Arnd Bergmann's avatar
    misc: sram: remove useless #ifdef · 2aa488a6
    Arnd Bergmann authored
    A recent patch added a new function that is now unused whenever
    CONFIG_OF is disabled:
    
    drivers/misc/sram.c:342:12: error: 'atmel_securam_wait' defined but not used [-Werror=unused-function]
    
    There is actually no reason for the #ifdef, because the driver
    currently cannot be used in a meaningful way without CONFIG_OF,
    and there is no compile-time dependency.
    
    Removing that #ifdef and the respective of_match_ptr() avoids the
    warning and simplifies the driver slightly.
    
    Fixes: 2ae2e288
    
     ("misc: sram: add Atmel securam support")
    Reviewed-by: default avatarVladimir Zapolskiy <vz@mleia.com>
    Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
    2aa488a6