]> www.infradead.org Git - users/hch/block.git/commitdiff
bus: mhi: fix doubled words and struct image_info kernel-doc
authorRandy Dunlap <rdunlap@infradead.org>
Thu, 16 Jul 2020 01:29:32 +0000 (18:29 -0700)
committerManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Tue, 18 Aug 2020 04:39:25 +0000 (10:09 +0530)
Drop doubled word "table" in kernel-doc.
Fix syntax for the kernel-doc notation for struct image_info.
Note that the bhi_vec field is private and not part of the kernel-doc.

Drop doubled word "device" in a comment.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Cc: Hemant Kumar <hemantk@codeaurora.org>
Cc: linux-arm-msm@vger.kernel.org
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
[mani: Added bus: prefix to the commit subject]
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
include/linux/mhi.h

index c4a940d9891210b70a4ca4ed564caf63511824a8..0779bc689b3ecf85970cf723e21fafb3c6736a77 100644 (file)
@@ -85,13 +85,15 @@ enum mhi_ch_type {
 };
 
 /**
- * struct image_info - Firmware and RDDM table table
- * @mhi_buf - Buffer for firmware and RDDM table
- * @entries - # of entries in table
+ * struct image_info - Firmware and RDDM table
+ * @mhi_buf: Buffer for firmware and RDDM table
+ * @entries: # of entries in table
  */
 struct image_info {
        struct mhi_buf *mhi_buf;
+       /* private: from internal.h */
        struct bhi_vec_entry *bhi_vec;
+       /* public: */
        u32 entries;
 };
 
@@ -593,7 +595,7 @@ int mhi_async_power_up(struct mhi_controller *mhi_cntrl);
 
 /**
  * mhi_sync_power_up - Start MHI power up sequence and wait till the device
- *                     device enters valid EE state
+ *                     enters valid EE state
  * @mhi_cntrl: MHI controller
  */
 int mhi_sync_power_up(struct mhi_controller *mhi_cntrl);