blob: f570b23165a23ab96b237fe3e081942686533250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause */
#ifndef _DT_BINDINGS_NVMEM_MICROCHIP_OTPC_H
#define _DT_BINDINGS_NVMEM_MICROCHIP_OTPC_H
/*
* Need to have it as a multiple of 4 as NVMEM memory is registered with
* stride = 4.
*/
#define OTP_PKT(id) ((id) * 4)
#endif
|