Make this buildable on IA64.

Reported by:	phk
This commit is contained in:
Ariff Abdullah 2006-10-02 15:26:37 +00:00
parent f645b0b51c
commit aab23ae39a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=162956

View File

@ -992,6 +992,7 @@ hdac_dma_cb(void *callback_arg, bus_dma_segment_t *segs, int nseg, int error)
static void
hdac_dma_nocache(void *ptr)
{
#if defined(__i386__) || defined(__amd64__)
pt_entry_t *pte;
vm_offset_t va;
@ -1001,6 +1002,7 @@ hdac_dma_nocache(void *ptr)
*pte |= PG_N;
invltlb();
}
#endif
}
/****************************************************************************