blob: 4a233ed2b97a6a30226e3157d8cc5810173d3d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Optimited xor routines
*
* Copyright IBM Corp. 2016
* Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
*/
extern struct xor_block_template xor_block_xc;
static __always_inline void __init arch_xor_init(void)
{
xor_force(&xor_block_xc);
}
|