base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL); if (IS_ERR(base)) return dev_err_probe(&pdev->dev, PTR_ERR(base), "ioremap error\n");
conf->base = base;
/* CSI_B is active low */
gpio = devm_gpiod_get_optional(&pdev->dev, "csi", GPIOD_OUT_HIGH); if (IS_ERR(gpio)) return dev_err_probe(&pdev->dev, PTR_ERR(gpio), "Failed to get CSI_B gpio\n");
/* RDWR_B is active low */
gpio = devm_gpiod_get_optional(&pdev->dev, "rdwr", GPIOD_OUT_HIGH); if (IS_ERR(gpio)) return dev_err_probe(&pdev->dev, PTR_ERR(gpio), "Failed to get RDWR_B gpio\n");
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.