Kévin Redon has uploaded this change for review. ( 
https://gerrit.osmocom.org/10121


Change subject: cardem: fix typo
......................................................................

cardem: fix typo

Change-Id: Ibeeb01b21a3ccfa74642f13694a20054e920837e
---
M firmware/libcommon/source/card_emu.c
M firmware/libcommon/source/mode_cardemu.c
2 files changed, 8 insertions(+), 8 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/simtrace2 refs/changes/21/10121/1

diff --git a/firmware/libcommon/source/card_emu.c 
b/firmware/libcommon/source/card_emu.c
index 94a601a..25ec36a 100644
--- a/firmware/libcommon/source/card_emu.c
+++ b/firmware/libcommon/source/card_emu.c
@@ -189,7 +189,7 @@
        return msg;
 }

-/* Update cardemu_usb_msg_rx_data length + submit bufffer */
+/* Update cardemu_usb_msg_rx_data length + submit buffer */
 static void flush_rx_buffer(struct card_handle *ch)
 {
        struct msgb *msg;
@@ -202,14 +202,14 @@

        ch->uart_rx_msg = NULL;

-       /* store length of data payload fild in header */
+       /* store length of data payload field in header */
        rd = (struct cardemu_usb_msg_rx_data *) msg->l2h;
        rd->data_len = msgb_l2len(msg) - sizeof(*rd);

        usb_buf_upd_len_and_submit(msg);
 }

-/* convert a non-contiguous PTS request/responsei into a contiguous
+/* convert a non-contiguous PTS request/response into a contiguous
  * buffer, returning the number of bytes used in the buffer */
 static int serialize_pts(uint8_t *out,  const uint8_t *in)
 {
@@ -301,7 +301,7 @@
                ch->fi = 1;
                ch->di = 1;
                emu_update_fidi(ch);
-               /* initialize todefault WI, this will be overwritten if we
+               /* initialize to default WI, this will be overwritten if we
                 * receive TC2, and it will be programmed into hardware after
                 * ATR is finished */
                ch->wi = ISO7816_3_DEFAULT_WI;
@@ -334,7 +334,7 @@
  * PTS / PPS handling
  **********************************************************************/

-/* Update the ATR sub-state */
+/* Update the PTS sub-state */
 static void set_pts_state(struct card_handle *ch, enum pts_state new_ptss)
 {
        TRACE_DEBUG("%u: 7816 PTS state %u -> %u\r\n",
@@ -974,7 +974,7 @@

        INIT_LLIST_HEAD(&ch->uart_tx_queue);

-       /* initialize the card_handle with reasonabe defaults */
+       /* initialize the card_handle with reasonable defaults */
        ch->num = slot_num;
        ch->irq_ep = irq_ep;
        ch->in_ep = in_ep;
diff --git a/firmware/libcommon/source/mode_cardemu.c 
b/firmware/libcommon/source/mode_cardemu.c
index b1d9c7a..7bb06f9 100644
--- a/firmware/libcommon/source/mode_cardemu.c
+++ b/firmware/libcommon/source/mode_cardemu.c
@@ -203,7 +203,7 @@
        csr = usart->US_CSR & usart->US_IMR;

        if (csr & US_CSR_RXRDY) {
-                       byte = (usart->US_RHR) & 0xFF;
+               byte = (usart->US_RHR) & 0xFF;
                if (rbuf_write(&ci->rb, byte) < 0)
                        TRACE_ERROR("rbuf overrun\r\n");
        }
@@ -341,7 +341,7 @@
 #endif /* DETECT_VCC_BY_ADC */

 /***********************************************************************
- * Core USB  / mainloop integration
+ * Core USB  / main loop integration
  ***********************************************************************/

 static void usim1_rst_irqhandler(const Pin *pPin)

--
To view, visit https://gerrit.osmocom.org/10121
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: simtrace2
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibeeb01b21a3ccfa74642f13694a20054e920837e
Gerrit-Change-Number: 10121
Gerrit-PatchSet: 1
Gerrit-Owner: Kévin Redon <kre...@sysmocom.de>

Reply via email to