This source file includes following definitions.
- altr_sysmgr_regmap_lookup_by_phandle
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 #ifndef __LINUX_MFD_ALTERA_SYSMGR_H__
   9 #define __LINUX_MFD_ALTERA_SYSMGR_H__
  10 
  11 #include <linux/err.h>
  12 #include <linux/errno.h>
  13 #include <linux/firmware/intel/stratix10-smc.h>
  14 
  15 struct device_node;
  16 
  17 #ifdef CONFIG_MFD_ALTERA_SYSMGR
  18 struct regmap *altr_sysmgr_regmap_lookup_by_phandle(struct device_node *np,
  19                                                     const char *property);
  20 #else
  21 static inline struct regmap *
  22 altr_sysmgr_regmap_lookup_by_phandle(struct device_node *np,
  23                                      const char *property)
  24 {
  25         return ERR_PTR(-ENOTSUPP);
  26 }
  27 #endif
  28 
  29 #endif