linux/arch/blackfin/include/asm/tlb.h
<<
>>
Prefs
   1/*
   2 * Copyright 2004-2008 Analog Devices Inc.
   3 *
   4 * Licensed under the GPL-2 or later.
   5 */
   6
   7#ifndef _BLACKFIN_TLB_H
   8#define _BLACKFIN_TLB_H
   9
  10#define tlb_start_vma(tlb, vma) do { } while (0)
  11#define tlb_end_vma(tlb, vma)   do { } while (0)
  12#define __tlb_remove_tlb_entry(tlb, ptep, address)      do { } while (0)
  13
  14/*
  15 * .. because we flush the whole mm when it
  16 * fills up.
  17 */
  18#define tlb_flush(tlb)          flush_tlb_mm((tlb)->mm)
  19
  20#include <asm-generic/tlb.h>
  21
  22#endif                          /* _BLACKFIN_TLB_H */
  23