ccid_proto: Fix ccid_rdr_to_pc_{data_rate_and_clock,escape}

Both use 'struct ccid_header_in', not 'struct ccid_header'.

Change-Id: I0e370da11a0c95d0ea4a517aa6060f16e21adef0
diff --git a/ccid/ccid_proto.h b/ccid/ccid_proto.h
index e10be8a..fa0ead1 100644
--- a/ccid/ccid_proto.h
+++ b/ccid/ccid_proto.h
@@ -303,14 +303,14 @@
 
 /* Section 6.2.4 RDR_to_PC_Escape */
 struct ccid_rdr_to_pc_escape {
-	struct ccid_header hdr;
+	struct ccid_header_in hdr;
 	uint8_t bRFU;
 	uint8_t abData[0];
 } __attribute__ ((packed));
 
 /* Section 6.2.5 RDR_to_PC_DataRateAndClockFrequency */
 struct ccid_rdr_to_pc_data_rate_and_clock {
-	struct ccid_header hdr;
+	struct ccid_header_in hdr;
 	uint8_t bRFU;
 	uint32_t dwClockFrequency;
 	uint32_t dwDataRate;