Commit 09f8c33a authored by Tamar Mashiah's avatar Tamar Mashiah Committed by Greg Kroah-Hartman
Browse files

mei: fix kdoc in the driver



Over time the functions were renamed,
but this was not always reflected in kdoc, fix that.

Signed-off-by: default avatarTamar Mashiah <tamar.mashiah@intel.com>
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Link: https://lore.kernel.org/r/20210621193756.134027-1-tomas.winkler@intel.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8254ee0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -498,7 +498,7 @@ static struct mei_fixup {
};

/**
 * mei_cldev_fixup - run fixup handlers
 * mei_cl_bus_dev_fixup - run fixup handlers
 *
 * @cldev: me client device
 */
+3 −3
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ void mei_io_cb_free(struct mei_cl_cb *cb)
}

/**
 * mei_tx_cb_queue - queue tx callback
 * mei_tx_cb_enqueue - queue tx callback
 *
 * Locking: called under "dev->device_lock" lock
 *
@@ -2250,7 +2250,7 @@ static void mei_cl_dma_free(struct mei_cl *cl)
}

/**
 * mei_cl_alloc_and_map - send client dma map request
 * mei_cl_dma_alloc_and_map - send client dma map request
 *
 * @cl: host client
 * @fp: pointer to file structure
@@ -2349,7 +2349,7 @@ int mei_cl_dma_alloc_and_map(struct mei_cl *cl, const struct file *fp,
}

/**
 * mei_cl_unmap_and_free - send client dma unmap request
 * mei_cl_dma_unmap - send client dma unmap request
 *
 * @cl: host client
 * @fp: pointer to file structure
+1 −1
Original line number Diff line number Diff line
@@ -853,7 +853,7 @@ static int mei_hbm_add_single_tx_flow_ctrl_creds(struct mei_device *dev,
}

/**
 * mei_hbm_cl_flow_control_res - flow control response from me
 * mei_hbm_cl_tx_flow_ctrl_creds_res - flow control response from me
 *
 * @dev: the device structure
 * @fctrl: flow control response bus message
+2 −2
Original line number Diff line number Diff line
@@ -1380,7 +1380,7 @@ static bool mei_me_fw_type_nm(const struct pci_dev *pdev)
	.quirk_probe = mei_me_fw_type_nm

/**
 * mei_me_fw_sku_sps_4() - check for sps 4.0 sku
 * mei_me_fw_type_sps_4() - check for sps 4.0 sku
 *
 * Read ME FW Status register to check for SPS Firmware.
 * The SPS FW is only signaled in the PCI function 0.
@@ -1405,7 +1405,7 @@ static bool mei_me_fw_type_sps_4(const struct pci_dev *pdev)
	.quirk_probe = mei_me_fw_type_sps_4

/**
 * mei_me_fw_sku_sps() - check for sps sku
 * mei_me_fw_type_sps() - check for sps sku
 *
 * Read ME FW Status register to check for SPS Firmware.
 * The SPS FW is only signaled in pci function 0
+1 −1
Original line number Diff line number Diff line
@@ -1102,7 +1102,7 @@ static ssize_t dev_state_show(struct device *device,
static DEVICE_ATTR_RO(dev_state);

/**
 * dev_set_devstate: set to new device state and notify sysfs file.
 * mei_set_devstate: set to new device state and notify sysfs file.
 *
 * @dev: mei_device
 * @state: new device state
Loading