Browse Source

fix device type.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1260 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong@gmail.com 14 years ago
parent
commit
ffa3e22d2e
1 changed files with 3 additions and 2 deletions
  1. 3 2
      bsp/lm3s/sdcard.c

+ 3 - 2
bsp/lm3s/sdcard.c

@@ -760,11 +760,12 @@ void rt_hw_sdcard_init(void)
 		rt_free(sector);
 		
 		/* register sdcard device */
+		sdcard_device.type  = RT_Device_Class_Block;
 		sdcard_device.init 	= rt_sdcard_init;
 		sdcard_device.open 	= rt_sdcard_open;
-		sdcard_device.close 	= rt_sdcard_close;
+		sdcard_device.close = rt_sdcard_close;
 		sdcard_device.read 	= rt_sdcard_read;
-		sdcard_device.write 	= rt_sdcard_write;
+		sdcard_device.write = rt_sdcard_write;
 		sdcard_device.control = rt_sdcard_control;
 		
 		/* no private */