Blame view

include/crypto/padlock.h 649 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   * Driver for VIA PadLock
   *
   * Copyright (c) 2004 Michal Ludvig <michal@logix.cz>
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License as published by the Free
   * Software Foundation; either version 2 of the License, or (at your option) 
   * any later version.
   *
   */
  
  #ifndef _CRYPTO_PADLOCK_H
  #define _CRYPTO_PADLOCK_H
6789b2dc4   Herbert Xu   [PADLOCK] Move fa...
15
  #define PADLOCK_ALIGNMENT 16
214930887   Herbert Xu   crypto: padlock -...
16
  #define PFX	KBUILD_MODNAME ": "
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17

ccc17c34d   Michal Ludvig   [CRYPTO] padlock:...
18
  #define PADLOCK_CRA_PRIORITY	300
28ce728a9   Herbert Xu   [CRYPTO] padlock:...
19
  #define PADLOCK_COMPOSITE_PRIORITY 400
ccc17c34d   Michal Ludvig   [CRYPTO] padlock:...
20

214930887   Herbert Xu   crypto: padlock -...
21
22
23
24
25
  #ifdef CONFIG_64BIT
  #define STACK_ALIGN 16
  #else
  #define STACK_ALIGN 4
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
  #endif	/* _CRYPTO_PADLOCK_H */