]> git.sur5r.net Git - u-boot/blobdiff - cpu/mpc5xx/speed.c
* Code cleanup:
[u-boot] / cpu / mpc5xx / speed.c
index 8098c9982a519a3e87616aa3f679b1284d328738..f6097f5c1347265dfa0373b21b6f8e46b4a731a9 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, 
+ * Foundation,
  */
 
 /*
  * File:               speed.c
- * 
+ *
  * Discription:                Provides cpu speed calculation
- * 
+ *
  */
 
 #include <common.h>
@@ -49,8 +49,8 @@ int get_clocks (void)
                gd->cpu_clk = vcoout / (2^(((immr->im_clkrst.car_sccr & SCCR_DFNL_MSK) >> SCCR_DFNL_SHIFT) + 1));
        } else {
                gd->cpu_clk = vcoout / (2^(immr->im_clkrst.car_sccr & SCCR_DFNH_MSK));
-       }       
-       
+       }
+
 #else /* CONFIG_5xx_GCLK_FREQ */
        gd->bus_clk = CONFIG_5xx_GCLK_FREQ;
 #endif /* CONFIG_5xx_GCLK_FREQ */