| .. | .. | 
|---|
|  | 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ | 
|---|
| 1 | 2 | /* | 
|---|
| 2 | 3 | * Synchronous Compression operations | 
|---|
| 3 | 4 | * | 
|---|
| 4 | 5 | * Copyright 2015 LG Electronics Inc. | 
|---|
| 5 | 6 | * Copyright (c) 2016, Intel Corporation | 
|---|
| 6 | 7 | * Author: Giovanni Cabiddu <giovanni.cabiddu@intel.com> | 
|---|
| 7 |  | - * | 
|---|
| 8 |  | - * This program is free software; you can redistribute it and/or modify it | 
|---|
| 9 |  | - * under the terms of the GNU General Public License as published by the Free | 
|---|
| 10 |  | - * Software Foundation; either version 2 of the License, or (at your option) | 
|---|
| 11 |  | - * any later version. | 
|---|
| 12 |  | - * | 
|---|
| 13 | 8 | */ | 
|---|
| 14 | 9 | #ifndef _CRYPTO_SCOMP_INT_H | 
|---|
| 15 | 10 | #define _CRYPTO_SCOMP_INT_H | 
|---|
| .. | .. | 
|---|
| 117 | 112 | * compression algorithm | 
|---|
| 118 | 113 | * | 
|---|
| 119 | 114 | * @alg:	algorithm definition | 
|---|
| 120 |  | - * | 
|---|
| 121 |  | - * Return: zero on success; error code in case of error | 
|---|
| 122 | 115 | */ | 
|---|
| 123 |  | -int crypto_unregister_scomp(struct scomp_alg *alg); | 
|---|
|  | 116 | +void crypto_unregister_scomp(struct scomp_alg *alg); | 
|---|
| 124 | 117 |  | 
|---|
| 125 | 118 | int crypto_register_scomps(struct scomp_alg *algs, int count); | 
|---|
| 126 | 119 | void crypto_unregister_scomps(struct scomp_alg *algs, int count); | 
|---|