brintos

brintos / linux-shallow public Read only

0
0
Text · 287 B · 0c741e7 Raw
12 lines · c
1/* SPDX-License-Identifier: BSD-3-Clause2 * Copyright (c) 2022 Marvell.3 */4#ifndef __OCTEP_CP_VERSION_H__5#define __OCTEP_CP_VERSION_H__6 7#define OCTEP_CP_VERSION(a, b, c)	((((a) & 0xff) << 16) + \8					 (((b) & 0xff) << 8) + \9					  ((c) & 0xff))10 11#endif /* __OCTEP_CP_VERSION_H__ */12