diff options
Diffstat (limited to 'include/linux/of.h')
| -rw-r--r-- | include/linux/of.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index 7fcb681baadf..31758036787c 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -133,7 +133,7 @@ void of_core_init(void);  static inline bool is_of_node(struct fwnode_handle *fwnode)  { -	return fwnode && fwnode->type == FWNODE_OF; +	return !IS_ERR_OR_NULL(fwnode) && fwnode->type == FWNODE_OF;  }  static inline struct device_node *to_of_node(struct fwnode_handle *fwnode)  |