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
566 B
C
27 lines
566 B
C
#ifndef _GENERIC_UNALIGNED_H
|
|
#define _GENERIC_UNALIGNED_H
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
#include <linux/unaligned/le_byteshift.h>
|
|
#include <linux/unaligned/be_byteshift.h>
|
|
#include <linux/unaligned/generic.h>
|
|
|
|
/*
|
|
* Select endianness
|
|
*/
|
|
#if defined(__LITTLE_ENDIAN)
|
|
#define get_unaligned __get_unaligned_le
|
|
#define put_unaligned __put_unaligned_le
|
|
#elif defined(__BIG_ENDIAN)
|
|
#define get_unaligned __get_unaligned_be
|
|
#define put_unaligned __put_unaligned_be
|
|
#else
|
|
#error invalid endian
|
|
#endif
|
|
|
|
/* Allow unaligned memory access */
|
|
void allow_unaligned(void);
|
|
|
|
#endif
|