@@ -558,22 +558,22 @@ void nvme_ctrl_set_host_iface(struct nvme_ctrl *p, const char *host_iface);
558558const char * nvme_ctrl_get_host_iface (const struct nvme_ctrl * p );
559559
560560/**
561- * nvme_ctrl_set_discovery_ctrl() - Set discovery_ctrl .
561+ * nvme_ctrl_set_discovery_ctrl() - Set discovery flag .
562562 * @p: The &struct nvme_ctrl instance to update.
563563 * @discovery_ctrl: Value to assign to the discovery_ctrl field.
564564 */
565565void nvme_ctrl_set_discovery_ctrl (struct nvme_ctrl * p , bool discovery_ctrl );
566566
567567/**
568- * nvme_ctrl_get_discovery_ctrl () - Get discovery_ctrl .
568+ * nvme_ctrl_is_discovery_ctrl () - Check discovery flag .
569569 * @p: The &struct nvme_ctrl instance to query.
570570 *
571571 * Return: The value of the discovery_ctrl field.
572572 */
573- bool nvme_ctrl_get_discovery_ctrl (const struct nvme_ctrl * p );
573+ bool nvme_ctrl_is_discovery_ctrl (const struct nvme_ctrl * p );
574574
575575/**
576- * nvme_ctrl_set_unique_discovery_ctrl() - Set unique_discovery_ctrl .
576+ * nvme_ctrl_set_unique_discovery_ctrl() - Set unique_discovery flag .
577577 * @p: The &struct nvme_ctrl instance to update.
578578 * @unique_discovery_ctrl: Value to assign to the unique_discovery_ctrl field.
579579 */
@@ -582,42 +582,42 @@ void nvme_ctrl_set_unique_discovery_ctrl(
582582 bool unique_discovery_ctrl );
583583
584584/**
585- * nvme_ctrl_get_unique_discovery_ctrl () - Get unique_discovery_ctrl .
585+ * nvme_ctrl_is_unique_discovery_ctrl () - Check unique_discovery flag .
586586 * @p: The &struct nvme_ctrl instance to query.
587587 *
588588 * Return: The value of the unique_discovery_ctrl field.
589589 */
590- bool nvme_ctrl_get_unique_discovery_ctrl (const struct nvme_ctrl * p );
590+ bool nvme_ctrl_is_unique_discovery_ctrl (const struct nvme_ctrl * p );
591591
592592/**
593- * nvme_ctrl_set_discovered() - Set discovered.
593+ * nvme_ctrl_set_discovered() - Set discovered flag .
594594 * @p: The &struct nvme_ctrl instance to update.
595595 * @discovered: Value to assign to the discovered field.
596596 */
597597void nvme_ctrl_set_discovered (struct nvme_ctrl * p , bool discovered );
598598
599599/**
600- * nvme_ctrl_get_discovered () - Get discovered.
600+ * nvme_ctrl_is_discovered () - Check discovered flag .
601601 * @p: The &struct nvme_ctrl instance to query.
602602 *
603603 * Return: The value of the discovered field.
604604 */
605- bool nvme_ctrl_get_discovered (const struct nvme_ctrl * p );
605+ bool nvme_ctrl_is_discovered (const struct nvme_ctrl * p );
606606
607607/**
608- * nvme_ctrl_set_persistent() - Set persistent.
608+ * nvme_ctrl_set_persistent() - Set persistent flag .
609609 * @p: The &struct nvme_ctrl instance to update.
610610 * @persistent: Value to assign to the persistent field.
611611 */
612612void nvme_ctrl_set_persistent (struct nvme_ctrl * p , bool persistent );
613613
614614/**
615- * nvme_ctrl_get_persistent () - Get persistent.
615+ * nvme_ctrl_is_persistent () - Check persistent flag .
616616 * @p: The &struct nvme_ctrl instance to query.
617617 *
618618 * Return: The value of the persistent field.
619619 */
620- bool nvme_ctrl_get_persistent (const struct nvme_ctrl * p );
620+ bool nvme_ctrl_is_persistent (const struct nvme_ctrl * p );
621621
622622/****************************************************************************
623623 * Accessors for: struct nvme_subsystem
0 commit comments