https://github.com/raspberrypi/linux
Raw File
Tip revision: fd4f278ad0cf6d4368182fdf299f0fab0da3257d authored by Phil Elwell on 14 June 2018, 10:21:04 UTC
irqchip: irq-bcm2835: Calc. FIQ_START at boot-time
Tip revision: fd4f278
atomic.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __TOOLS_LINUX_ASM_ATOMIC_H
#define __TOOLS_LINUX_ASM_ATOMIC_H

#if defined(__i386__) || defined(__x86_64__)
#include "../../arch/x86/include/asm/atomic.h"
#else
#include <asm-generic/atomic-gcc.h>
#endif

#endif /* __TOOLS_LINUX_ASM_ATOMIC_H */
back to top