Lines Matching defs:syscon
14 #include <linux/mfd/syscon.h>
690 struct regmap *syscon;
695 syscon = syscon_regmap_lookup_by_phandle_args(np, "ti,camerrx-control",
697 if (!IS_ERR(syscon)) {
698 cal->syscon_camerrx = syscon;
704 PTR_ERR(syscon));
707 * Backward DTS compatibility. If syscon entry is not present then
726 syscon = regmap_init_mmio(NULL, base, &config);
727 if (IS_ERR(syscon)) {
729 return PTR_ERR(syscon);
736 cal->syscon_camerrx = syscon;