remove gcc-ism; tsinfo isn't used anyway

This commit is contained in:
Sam Leffler 2009-03-15 01:38:37 +00:00
parent 49633f4b36
commit 1e0f47c327
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189841

View File

@ -27,7 +27,7 @@
* defined(__DragonFly__) */
extern inline u16 tsinfo(int tag1d, int contention_based, int direction)
static inline u16 tsinfo(int tag1d, int contention_based, int direction)
{
return (tag1d << 11) | (contention_based << 7) | (direction << 5) |
(tag1d << 1);