freebsd-skq/sys/arm/lpc
eadler ec294fd7f5 MFC r258779,r258780,r258787,r258822:
Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit.  Instead use (1U << 31) which gets the
expected result.

Similar to the (1 << 31) case it is not defined to do (2 << 30).

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.
2014-02-04 03:36:42 +00:00
..
files.lpc
if_lpe.c MFC r257127: 2014-01-23 12:02:04 +00:00
if_lpereg.h MFC r258779,r258780,r258787,r258822: 2014-02-04 03:36:42 +00:00
lpc_dmac.c
lpc_fb.c MFC r257199, r257200, r257217: 2013-12-13 20:43:11 +00:00
lpc_gpio.c MFC r257199, r257200, r257217: 2013-12-13 20:43:11 +00:00
lpc_intc.c
lpc_machdep.c MFC r257669, r257672, r257673, r257676, r257678: 2013-12-14 00:16:08 +00:00
lpc_mmc.c MFC r257127: 2014-01-23 12:02:04 +00:00
lpc_ohci.c
lpc_pll.c
lpc_pwr.c
lpc_rtc.c
lpc_space.c
lpc_spi.c MFC r257199, r257200, r257217: 2013-12-13 20:43:11 +00:00
lpc_timer.c MFC r257199, r257200, r257217: 2013-12-13 20:43:11 +00:00
lpcreg.h MFC r258779,r258780,r258787,r258822: 2014-02-04 03:36:42 +00:00
lpcvar.h
ssd1289.c
std.lpc Set machine correctly on ARM. This allows universe to use the correct world 2012-08-18 05:48:19 +00:00