nvme: Unbreak LE builds after r329824

The parameter 'p' is unused if _BYTE_ORDER == _LITTLE_ENDIAN. Add in a
(void)p to fix the build.
This commit is contained in:
Kyle Evans 2018-02-22 16:16:49 +00:00
parent 5af17cb319
commit afdc2600c2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329827

View File

@ -1196,6 +1196,8 @@ void nvme_le128toh(void *p)
tmp[i] = tmp[15-i];
tmp[15-i] = b;
}
#else
(void)p;
#endif
}