Revert "x86, numaq: add pci_acpi_scan_root() stub"
[deliverable/linux.git] / arch / x86 / kernel / tce_64.c
index e3f2569b2c44140a14d19fc7ab5e0fae0b8047c5..9e540fee70096f692a5179dc3ea9d21d687a14cf 100644 (file)
@@ -40,9 +40,9 @@ static inline void flush_tce(void* tceaddr)
 {
        /* a single tce can't cross a cache line */
        if (cpu_has_clflush)
-               asm volatile("clflush (%0)" :: "r" (tceaddr));
+               clflush(tceaddr);
        else
-               asm volatile("wbinvd":::"memory");
+               wbinvd();
 }
 
 void tce_build(struct iommu_table *tbl, unsigned long index,
This page took 0.024628 seconds and 5 git commands to generate.