From ef39d8572e0366c53f10dd97ea389420052d4d8f Mon Sep 17 00:00:00 2001
From: John Hodge <tpg@mutabah.net>
Date: Tue, 7 Sep 2010 14:41:31 +0800
Subject: [PATCH] Cosmetic code changes

---
 Modules/IPStack/ipv4.c    | 2 +-
 Modules/Storage/FDD/fdd.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Modules/IPStack/ipv4.c b/Modules/IPStack/ipv4.c
index 672b4ec1..e2f18f8b 100644
--- a/Modules/IPStack/ipv4.c
+++ b/Modules/IPStack/ipv4.c
@@ -69,7 +69,7 @@ int IPv4_SendPacket(tInterface *Iface, tIPv4 Address, int Protocol, int ID, int
 	tIPv4Header	*hdr = (void*)buf;
 	 int	ret;
 	
-	// TODO: OUTPUT Firewall rule go here
+	// OUTPUT Firewall rule go here
 	ret = IPTablesV4_TestChain("OUTPUT",
 		&Iface->IP4.Address, &Address,
 		Protocol, 0,
diff --git a/Modules/Storage/FDD/fdd.c b/Modules/Storage/FDD/fdd.c
index 4a9ec2d4..bd117e1d 100644
--- a/Modules/Storage/FDD/fdd.c
+++ b/Modules/Storage/FDD/fdd.c
@@ -69,7 +69,7 @@ enum FloppyPorts {
 
 enum FloppyCommands {
 	FIX_DRIVE_DATA	= 0x03,
-	HECK_DRIVE_STATUS	= 0x04,
+	CHECK_DRIVE_STATUS	= 0x04,
 	CALIBRATE_DRIVE	= 0x07,
 	CHECK_INTERRUPT_STATUS = 0x08,
 	SEEK_TRACK		= 0x0F,
@@ -213,7 +213,7 @@ int FDD_Install(char **Arguments)
 void FDD_UnloadModule()
 {
 	 int	i;
-	//DevFS_DelDevice( &gFDD_DriverInfo );
+	DevFS_DelDevice( &gFDD_DriverInfo );
 	Mutex_Acquire(&glFDD);
 	for(i=0;i<4;i++) {
 		Time_RemoveTimer(gFDD_Devices[i].timer);
-- 
GitLab