add port definition for mcf UART driver
[linux-2.6/next.git] / arch / parisc / lib / libgcc / __lshrdi3.c
blob4a820708ec57b6ca1c19705e212fea43212ec55a
1 #include "libgcc.h"
3 u64 __lshrdi3(u64 v, int cnt)
5 int c = cnt & 31;
6 u32 vl = (u32) v;
7 u32 vh = (u32) (v >> 32);
9 if (cnt & 32) {
10 vl = (vh >> c);
11 vh = 0;
12 } else {
13 vl = (vl >> c) + (vh << (32 - c));
14 vh = (vh >> c);
17 return ((u64) vh << 32) + vl;
19 EXPORT_SYMBOL(__lshrdi3);