Linux Audio

Check our new training course

Loading...
Note: File does not exist in v5.4.
 1/* SPDX-License-Identifier: BSD-3-Clause
 2 * 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__ */