device: fixup doxygen parameter names

Fix several parameter references with incorrect names.

Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
diff --git a/include/zephyr/device.h b/include/zephyr/device.h
index a01fa69..834471c 100644
--- a/include/zephyr/device.h
+++ b/include/zephyr/device.h
@@ -609,8 +609,8 @@
  *
  * There is no guarantee on the order in which required devices are visited.
  *
- * If the @p visitor function returns a negative value iteration is halted, and
- * the returned value from the visitor is returned from this function.
+ * If the @p visitor_cb function returns a negative value iteration is halted,
+ * and the returned value from the visitor is returned from this function.
  *
  * @note This API is not available to unprivileged threads.
  *
@@ -619,7 +619,7 @@
  * @param visitor_cb the function that should be invoked on each device in the
  * dependency set. This parameter must not be null.
  * @param context state that is passed through to the visitor function. This
- * parameter may be null if @p visitor tolerates a null @p context.
+ * parameter may be null if @p visitor_cb tolerates a null @p context.
  *
  * @return The number of devices that were visited if all visits succeed, or
  * the negative value returned from the first visit that did not succeed.
@@ -642,8 +642,8 @@
  *
  * There is no guarantee on the order in which required devices are visited.
  *
- * If the @p visitor function returns a negative value iteration is halted, and
- * the returned value from the visitor is returned from this function.
+ * If the @p visitor_cb function returns a negative value iteration is halted,
+ * and the returned value from the visitor is returned from this function.
  *
  * @note This API is not available to unprivileged threads.
  *
@@ -652,7 +652,7 @@
  * @param visitor_cb the function that should be invoked on each device in the
  * support set. This parameter must not be null.
  * @param context state that is passed through to the visitor function. This
- * parameter may be null if @p visitor tolerates a null @p context.
+ * parameter may be null if @p visitor_cb tolerates a null @p context.
  *
  * @return The number of devices that were visited if all visits succeed, or the
  * negative value returned from the first visit that did not succeed.