blob: 0c741e752db65028a46bac54a575ab55eb5a1a59 [file] [log] [blame]
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (c) 2022 Marvell.
*/
#ifndef __OCTEP_CP_VERSION_H__
#define __OCTEP_CP_VERSION_H__
#define OCTEP_CP_VERSION(a, b, c) ((((a) & 0xff) << 16) + \
(((b) & 0xff) << 8) + \
((c) & 0xff))
#endif /* __OCTEP_CP_VERSION_H__ */