1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00:00

Make local function static.

This commit is contained in:
Ed Maste 2012-10-11 21:24:07 +00:00
parent 3d09489774
commit a5450ddfbd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=241464

View File

@ -49,7 +49,7 @@ int verbose = 0;
__FUNCTION__, __LINE__, ##__VA_ARGS__); \
} while (0)
inline void prefetch (const void *x)
static inline void prefetch (const void *x)
{
__asm volatile("prefetcht0 %0" :: "m" (*(const unsigned long *)x));
}