/*1* arch/xtensa/kernel/xtensa_ksyms.c2*3* Export Xtensa-specific functions for loadable modules.4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*9* Copyright (C) 2001 - 2005 Tensilica Inc.10*11* Joe Taylor <[email protected]>12*/1314#include <linux/module.h>15#include <asm/pgtable.h>1617EXPORT_SYMBOL(empty_zero_page);1819unsigned int __sync_fetch_and_and_4(volatile void *p, unsigned int v)20{21BUG();22}23EXPORT_SYMBOL(__sync_fetch_and_and_4);2425unsigned int __sync_fetch_and_or_4(volatile void *p, unsigned int v)26{27BUG();28}29EXPORT_SYMBOL(__sync_fetch_and_or_4);303132