summaryrefslogtreecommitdiffstats
path: root/sys/dev/hatm/if_hatmreg.h
Commit message (Collapse)AuthorAgeFilesLines
* MFC r258779,r258780,r258787,r258822:eadler2014-02-041-3/+3
| | | | | | | | | | | | | 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.
* Start each of the license/copyright comments with /*-, minor shuffle of linesimp2005-01-061-1/+1
|
* This is a driver for Fore/Marconi HE155 and HE622 ATM cards. It is fullharti2003-06-171-0/+641
busdma and has extensively been tested on i386 and sparc64.
OpenPOWER on IntegriCloud