]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
delete useless breaks that annoy Deputy
authorregehr <regehr>
Mon, 8 Sep 2008 03:10:23 +0000 (03:10 +0000)
committerregehr <regehr>
Mon, 8 Sep 2008 03:10:23 +0000 (03:10 +0000)
tos/chips/pxa27x/i2c/HplPXA27xI2CP.nc

index 912a7b1c13d9d3264c76d8578c14bc52a9d13af5..e7168f1b02c09fd0eea345cefe3af54e9d00972a 100644 (file)
@@ -98,8 +98,8 @@ implementation
 
   async command uint32_t I2C.getIDBR() { 
     switch(dev) {
-    case 0: return IDBR; break;
-    case 1: return PIDBR; break;
+    case 0: return IDBR;
+    case 1: return PIDBR;
     default: return 0;
     }
   }
@@ -115,8 +115,8 @@ implementation
 
   async command uint32_t I2C.getICR() { 
     switch(dev) {
-    case 0: return ICR; break;
-    case 1: return PICR; break;
+    case 0: return ICR;
+    case 1: return PICR;
     default: return 0;
     }
   }
@@ -131,8 +131,8 @@ implementation
 
  async command uint32_t I2C.getISR() { 
     switch(dev) {
-    case 0: return ISR; break;
-    case 1: return PISR; break;
+    case 0: return ISR;
+    case 1: return PISR;
     default: return 0;
     }
   }