Skip to content

Commit c29a628

Browse files
committed
firmware: arm_scmi: Fix few trivial typos in comments
While adding new comments found couple of typos that are better fixed. s/informfation/information/ s/statues/status/ Signed-off-by: Sudeep Holla <[email protected]>
1 parent 37bbffc commit c29a628

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/firmware/arm_scmi/driver.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ struct scmi_desc {
8686
};
8787

8888
/**
89-
* struct scmi_chan_info - Structure representing a SCMI channel informfation
89+
* struct scmi_chan_info - Structure representing a SCMI channel information
9090
*
9191
* @cl: Mailbox Client
9292
* @chan: Transmit/Receive mailbox channel
@@ -190,7 +190,7 @@ static void scmi_fetch_response(struct scmi_xfer *xfer,
190190
struct scmi_shared_mem __iomem *mem)
191191
{
192192
xfer->hdr.status = ioread32(mem->msg_payload);
193-
/* Skip the length of header and statues in payload area i.e 8 bytes*/
193+
/* Skip the length of header and status in payload area i.e 8 bytes */
194194
xfer->rx.len = min_t(size_t, xfer->rx.len, ioread32(&mem->length) - 8);
195195

196196
/* Take a copy to the rx buffer.. */

0 commit comments

Comments
 (0)