diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-01-11 11:41:07 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-01-11 11:41:07 +0000 |
commit | 987e86b8c85f8217a5ced30fb8e894a340e7ebe6 (patch) | |
tree | 9dbb46a9dbb55aa6959bae596c0b30992400f83f /os/hal/src | |
parent | b534dcf3a9396fcc32e26c939a0a2ea32d377443 (diff) | |
download | ChibiOS-987e86b8c85f8217a5ced30fb8e894a340e7ebe6.tar.gz ChibiOS-987e86b8c85f8217a5ced30fb8e894a340e7ebe6.tar.bz2 ChibiOS-987e86b8c85f8217a5ced30fb8e894a340e7ebe6.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6624 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/gpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/src/gpt.c b/os/hal/src/gpt.c index e37e1a5d8..eefeb8e32 100644 --- a/os/hal/src/gpt.c +++ b/os/hal/src/gpt.c @@ -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),
|