In a couple of places it seems reasonable to use MEGA intead
of explicit number. It makes code more readable and robust.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
 
 #include <linux/delay.h>
 #include <linux/ktime.h>
+#include <linux/units.h>
 
 #include "sb_regs.h"
 #include "tb.h"
        unsigned long uframes;
 
        uframes = bw * 512UL << scale;
-       return DIV_ROUND_CLOSEST(uframes * 8000, 1000 * 1000);
+       return DIV_ROUND_CLOSEST(uframes * 8000, MEGA);
 }
 
 static u32 mbps_to_usb3_bw(unsigned int mbps, u8 scale)
        unsigned long uframes;
 
        /* 1 uframe is 1/8 ms (125 us) -> 1 / 8000 s */
-       uframes = ((unsigned long)mbps * 1000 *  1000) / 8000;
+       uframes = ((unsigned long)mbps * MEGA) / 8000;
        return DIV_ROUND_UP(uframes, 512UL << scale);
 }