brintos

brintos / linux-shallow public Read only

0
0
Text · 438 B · 6de70e8 Raw
25 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Driver for VIA PadLock4 *5 * Copyright (c) 2004 Michal Ludvig <michal@logix.cz>6 */7 8#ifndef _CRYPTO_PADLOCK_H9#define _CRYPTO_PADLOCK_H10 11#define PADLOCK_ALIGNMENT 1612 13#define PFX	KBUILD_MODNAME ": "14 15#define PADLOCK_CRA_PRIORITY	30016#define PADLOCK_COMPOSITE_PRIORITY 40017 18#ifdef CONFIG_64BIT19#define STACK_ALIGN 1620#else21#define STACK_ALIGN 422#endif23 24#endif	/* _CRYPTO_PADLOCK_H */25