diff options
author | barthess <barthess@yandex.ru> | 2017-01-06 11:05:08 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2017-01-06 11:05:08 +0300 |
commit | 71a77db50fbac8b0018036ac78065a9fdec9a121 (patch) | |
tree | a03ad9f3916a833ed919ffd1baaaa9c8329b0e0b | |
parent | 52f82fb9cc13779146016ca993c80f7b82ea65bd (diff) | |
download | ChibiOS-Contrib-71a77db50fbac8b0018036ac78065a9fdec9a121.tar.gz ChibiOS-Contrib-71a77db50fbac8b0018036ac78065a9fdec9a121.tar.bz2 ChibiOS-Contrib-71a77db50fbac8b0018036ac78065a9fdec9a121.zip |
Fixed typo in ramdisk.
-rw-r--r-- | os/various/ramdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/various/ramdisk.c b/os/various/ramdisk.c index 08abdca..23bf658 100644 --- a/os/various/ramdisk.c +++ b/os/various/ramdisk.c @@ -167,7 +167,7 @@ static const struct BaseBlockDeviceVMT vmt = { void ramdiskObjectInit(RamDisk *rdp) { rdp->vmt = &vmt; - rdp->state = SD_STOP; + rdp->state = BLK_STOP; } /** |