/*1* Copyright 2011 Tilera Corporation. All Rights Reserved.2*3* This program is free software; you can redistribute it and/or4* modify it under the terms of the GNU General Public License5* as published by the Free Software Foundation, version 2.6*7* This program is distributed in the hope that it will be useful, but8* WITHOUT ANY WARRANTY; without even the implied warranty of9* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or10* NON INFRINGEMENT. See the GNU General Public License for11* more details.12*/1314#ifndef _ASM_TILE_EDAC_H15#define _ASM_TILE_EDAC_H1617/* ECC atomic, DMA, SMP and interrupt safe scrub function */1819static inline void atomic_scrub(void *va, u32 size)20{21/*22* These is nothing to be done here because CE is23* corrected by the mshim.24*/25return;26}2728#endif /* _ASM_TILE_EDAC_H */293031