ASoC: rt1305: Use ULL suffixes for 64-bit constants
[sfrench/cifs-2.6.git] / sound / soc / codecs / rt1305.c
index f4c8c45f40103cf82f5450b93da3b7e446db3878..421b8fb2fa04dd63745284d9bda88fca22efe0dc 100644 (file)
@@ -1066,7 +1066,7 @@ static void rt1305_calibrate(struct rt1305_priv *rt1305)
        pr_debug("Left_rhl = 0x%x rh=0x%x rl=0x%x\n", rhl, rh, rl);
        pr_info("Left channel %d.%dohm\n", (r0ohm/10), (r0ohm%10));
 
-       r0l = 562949953421312;
+       r0l = 562949953421312ULL;
        if (rhl != 0)
                do_div(r0l, rhl);
        pr_debug("Left_r0 = 0x%llx\n", r0l);
@@ -1083,7 +1083,7 @@ static void rt1305_calibrate(struct rt1305_priv *rt1305)
        pr_debug("Right_rhl = 0x%x rh=0x%x rl=0x%x\n", rhl, rh, rl);
        pr_info("Right channel %d.%dohm\n", (r0ohm/10), (r0ohm%10));
 
-       r0r = 562949953421312;
+       r0r = 562949953421312ULL;
        if (rhl != 0)
                do_div(r0r, rhl);
        pr_debug("Right_r0 = 0x%llx\n", r0r);