Skip to content

Commit 551fb11

Browse files
committed
include: header file cleanup
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 0db21c8 commit 551fb11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/crypto/md5.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extern "C" {
1616
* @param ilen [in] Length of input data
1717
* @param output [out] Output buffer to store md5 hash
1818
*/
19-
void md5_hash(const unsigned char *input, int ilen, unsigned char output[16]);
19+
void md5_hash(const void *input, int ilen, unsigned char output[16]);
2020

2121
#ifdef __cplusplus
2222
}

include/gpslib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ enum gpstype_e {
1515
GPS_TYPE_ANY, /**< GPS module that is not known to library */
1616
GPS_TYPE_SIRF, /**< SIRF Star III GPS module */
1717
GPS_TYPE_MTK, /**< GPS/GNSS module based on Mediatek chipset */
18+
GPS_TYPE_MTKIRNSS, /**< IRNSS Module from MTK */
1819
GPS_TYPE_STIRNSS, /**< GNSS module with IRNSS support based on STA80xx chipset (e.g. L89) */
1920
GPS_TYPE_UNICORE, /**< Default value for BC20 as onboard GNSS module */
20-
GPS_TYPE_MTKIRNSS, /**< IRNSS Module from MTK */
2121
};
2222

2323
/**

0 commit comments

Comments
 (0)