/**
 * Definitions shared between PPE and SPE
 */
#ifndef _COMMON_H
#define _COMMON_H

#define SPE_ALIGN 0x80

struct spe_args {
	uint64_t buf_addr;
	uint32_t buf_size;
	char c;
};

#endif /* _COMMON_H */
