@@ -46,18 +46,18 @@ API to add a new FPGA region
4646----------------------------
4747
4848* struct :c:type: `fpga_region ` — The FPGA region struct
49- * :c:func: ` devm_fpga_region_create ` — Allocate and init a region struct
50- * :c:func: ` fpga_region_register ` — Register an FPGA region
51- * :c:func: ` fpga_region_unregister ` — Unregister an FPGA region
49+ * devm_fpga_region_create() — Allocate and init a region struct
50+ * fpga_region_register() — Register an FPGA region
51+ * fpga_region_unregister() — Unregister an FPGA region
5252
5353The FPGA region's probe function will need to get a reference to the FPGA
5454Manager it will be using to do the programming. This usually would happen
5555during the region's probe function.
5656
57- * :c:func: ` fpga_mgr_get ` — Get a reference to an FPGA manager, raise ref count
58- * :c:func: ` of_fpga_mgr_get ` — Get a reference to an FPGA manager, raise ref count,
57+ * fpga_mgr_get() — Get a reference to an FPGA manager, raise ref count
58+ * of_fpga_mgr_get() — Get a reference to an FPGA manager, raise ref count,
5959 given a device node.
60- * :c:func: ` fpga_mgr_put ` — Put an FPGA manager
60+ * fpga_mgr_put() — Put an FPGA manager
6161
6262The FPGA region will need to specify which bridges to control while programming
6363the FPGA. The region driver can build a list of bridges during probe time
@@ -66,11 +66,11 @@ the list of bridges to program just before programming
6666(:c:member: `fpga_region->get_bridges `). The FPGA bridge framework supplies the
6767following APIs to handle building or tearing down that list.
6868
69- * :c:func: ` fpga_bridge_get_to_list ` — Get a ref of an FPGA bridge, add it to a
69+ * fpga_bridge_get_to_list() — Get a ref of an FPGA bridge, add it to a
7070 list
71- * :c:func: ` of_fpga_bridge_get_to_list ` — Get a ref of an FPGA bridge, add it to a
71+ * of_fpga_bridge_get_to_list() — Get a ref of an FPGA bridge, add it to a
7272 list, given a device node
73- * :c:func: ` fpga_bridges_put ` — Given a list of bridges, put them
73+ * fpga_bridges_put() — Given a list of bridges, put them
7474
7575.. kernel-doc :: include/linux/fpga/fpga-region.h
7676 :functions: fpga_region
0 commit comments