浏览代码

Merge remote-tracking branch 'regulator/fix/core' into regulator-linus

Mark Brown 11 年之前
父节点
当前提交
5c437f4241
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/linux/regulator/consumer.h

+ 2 - 2
include/linux/regulator/consumer.h

@@ -258,14 +258,14 @@ regulator_get_exclusive(struct device *dev, const char *id)
 static inline struct regulator *__must_check
 regulator_get_optional(struct device *dev, const char *id)
 {
-	return NULL;
+	return ERR_PTR(-ENODEV);
 }
 
 
 static inline struct regulator *__must_check
 devm_regulator_get_optional(struct device *dev, const char *id)
 {
-	return NULL;
+	return ERR_PTR(-ENODEV);
 }
 
 static inline void regulator_put(struct regulator *regulator)