diff options
author | Alexis211 <alexis211@gmail.com> | 2009-09-06 11:49:11 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-09-06 11:49:11 +0200 |
commit | 50115ce7b42baf30d31cbee2669bc3d694098d12 (patch) | |
tree | a6813f867a940602ae5997a26a08b54fa0449411 | |
parent | aa5aa4482314078c52f86226a1753511d3f4a4cb (diff) | |
download | Melon-50115ce7b42baf30d31cbee2669bc3d694098d12.tar.gz Melon-50115ce7b42baf30d31cbee2669bc3d694098d12.zip |
Cleanup'ed a TODO
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | Source/Kernel/Devices/Floppy/FloppyController.class.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -45,4 +45,5 @@ stats: echo -n "Lines of code : "; \ cat Source/*/{*,*/*,*/*/*}.{c,asm,cpp,h} 2> /dev/null | wc -l; \ echo "TODOs : "; \ - cat Source/*/{*,*/*,*/*/*}.{c,asm,cpp,h} 2> /dev/null | grep TODO; + git grep TODO + #cat Source/*/{*,*/*,*/*/*}.{c,asm,cpp,h} 2> /dev/null | grep TODO; diff --git a/Source/Kernel/Devices/Floppy/FloppyController.class.cpp b/Source/Kernel/Devices/Floppy/FloppyController.class.cpp index bafc0a6..3e97e25 100644 --- a/Source/Kernel/Devices/Floppy/FloppyController.class.cpp +++ b/Source/Kernel/Devices/Floppy/FloppyController.class.cpp @@ -115,7 +115,7 @@ void FloppyController::detect() { //TODO : do this better Vector<Device*> fdds = Dev::findDevices("block.floppy"); for (u32int i = 0; i < fdds.size(); i++) { - Part::registerDevice((BlockDevice*)fdds[i]); //TODO + Part::registerDevice((BlockDevice*)fdds[i]); } new Thread(floppyMotorTimer, true); |