https://github.com/torvalds/linux
Revision eaac6a2d26b65511e164772bec6918fcbc61938e authored by Chen Ni on 03 January 2024, 03:35:34 UTC, committed by David S. Miller on 04 January 2024, 10:50:57 UTC
Add check for usbnet_get_endpoints() and return the error if it fails
in order to transfer the error.

Fixes: 16626b0cc3d5 ("asix: Add a new driver for the AX88172A")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 818ed89
Raw File
Tip revision: eaac6a2d26b65511e164772bec6918fcbc61938e authored by Chen Ni on 03 January 2024, 03:35:34 UTC
asix: Add check for usbnet_get_endpoints
Tip revision: eaac6a2
aegis-neon.h
// SPDX-License-Identifier: GPL-2.0-or-later

#ifndef _AEGIS_NEON_H
#define _AEGIS_NEON_H

void crypto_aegis128_init_neon(void *state, const void *key, const void *iv);
void crypto_aegis128_update_neon(void *state, const void *msg);
void crypto_aegis128_encrypt_chunk_neon(void *state, void *dst, const void *src,
					unsigned int size);
void crypto_aegis128_decrypt_chunk_neon(void *state, void *dst, const void *src,
					unsigned int size);
int crypto_aegis128_final_neon(void *state, void *tag_xor,
			       unsigned int assoclen,
			       unsigned int cryptlen,
			       unsigned int authsize);

#endif
back to top