Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6fa82a9 authored by Paul Moore's avatar Paul Moore Committed by David S. Miller
Browse files

NetLabel: change netlbl_secattr_init() to return void



The netlbl_secattr_init() function would always return 0 making it pointless
to have a return value.  This patch changes the function to return void.

Signed-off-by: default avatarPaul Moore <paul.moore@hp.com>
Signed-off-by: default avatarJames Morris <jmorris@namei.org>
parent cd28786d
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -169,14 +169,12 @@ static inline void netlbl_secattr_cache_free(struct netlbl_lsm_cache *cache)
 * @secattr: the struct to initialize
 *
 * Description:
 * Initialize an already allocated netlbl_lsm_secattr struct.  Returns zero on
 * success, negative values on error.
 * Initialize an already allocated netlbl_lsm_secattr struct.
 *
 */
static inline int netlbl_secattr_init(struct netlbl_lsm_secattr *secattr)
static inline void netlbl_secattr_init(struct netlbl_lsm_secattr *secattr)
{
	memset(secattr, 0, sizeof(*secattr));
	return 0;
}

/**