parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL); if (!parents) return;
reg = of_io_request_and_map(node, 0, of_node_full_name(node)); if (IS_ERR(reg)) {
pr_err("Could not get registers for sun8i-mbus-clk\n"); goto err_free_parents;
}
div = kzalloc(sizeof(*div), GFP_KERNEL); if (!div) goto err_unmap;
mux = kzalloc(sizeof(*mux), GFP_KERNEL); if (!mux) goto err_free_div;
gate = kzalloc(sizeof(*gate), GFP_KERNEL); if (!gate) goto err_free_mux;
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.