commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
27 lines
600 B
C
27 lines
600 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_M68K_UNALIGNED_H
|
|
#define _ASM_M68K_UNALIGNED_H
|
|
|
|
|
|
#ifdef CONFIG_CPU_HAS_NO_UNALIGNED
|
|
#include <linux/unaligned/be_struct.h>
|
|
#include <linux/unaligned/le_byteshift.h>
|
|
#include <linux/unaligned/generic.h>
|
|
|
|
#define get_unaligned __get_unaligned_be
|
|
#define put_unaligned __put_unaligned_be
|
|
|
|
#else
|
|
/*
|
|
* The m68k can do unaligned accesses itself.
|
|
*/
|
|
#include <linux/unaligned/access_ok.h>
|
|
#include <linux/unaligned/generic.h>
|
|
|
|
#define get_unaligned __get_unaligned_be
|
|
#define put_unaligned __put_unaligned_be
|
|
|
|
#endif
|
|
|
|
#endif /* _ASM_M68K_UNALIGNED_H */
|