https://github.com/raspberrypi/linux
Raw File
Tip revision: bfef951a177d4d3f10e8b5072316a517d68a2a27 authored by chipdip.lab on 09 July 2021, 13:00:22 UTC
overlays: Add overlay for Chipdip I2S master DAC
Tip revision: bfef951
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