git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6624 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2014-01-11 11:41:07 +00:00
parent b534dcf3a9
commit 987e86b8c8
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ void gptObjectInit(GPTDriver *gptp) {
*/
void gptStart(GPTDriver *gptp, const GPTConfig *config) {
chDbgCheck((gptp != NULL) && (config != NULL), "ptStart");
chDbgCheck((gptp != NULL) && (config != NULL), "gptStart");
chSysLock();
chDbgAssert((gptp->state == GPT_STOP) || (gptp->state == GPT_READY),