Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Driver for VIA PadLock
0004  *
0005  * Copyright (c) 2004 Michal Ludvig <michal@logix.cz>
0006  */
0007 
0008 #ifndef _CRYPTO_PADLOCK_H
0009 #define _CRYPTO_PADLOCK_H
0010 
0011 #define PADLOCK_ALIGNMENT 16
0012 
0013 #define PFX KBUILD_MODNAME ": "
0014 
0015 #define PADLOCK_CRA_PRIORITY    300
0016 #define PADLOCK_COMPOSITE_PRIORITY 400
0017 
0018 #ifdef CONFIG_64BIT
0019 #define STACK_ALIGN 16
0020 #else
0021 #define STACK_ALIGN 4
0022 #endif
0023 
0024 #endif  /* _CRYPTO_PADLOCK_H */