* Fix minor NAND JFFS2 related issue

* Fixes for SL811 USB controller:
  - implement workaround for broken memory stick
  - improve error handling

* Increase packet send timeout to 10 ms in cpu/mpc8xx/scc.c to better
  cope with congested networks.
diff --git a/cpu/mpc8xx/scc.c b/cpu/mpc8xx/scc.c
index 1a15a7b..78b2f99 100644
--- a/cpu/mpc8xx/scc.c
+++ b/cpu/mpc8xx/scc.c
@@ -45,7 +45,7 @@
 
 #define TX_BUF_CNT 2
 
-#define TOUT_LOOP 100
+#define TOUT_LOOP 10000	/* 10 ms to have a packet sent */
 
 static char txbuf[DBUF_LENGTH];