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

Commit f77aa70b authored by Derek Robson's avatar Derek Robson Committed by Greg Kroah-Hartman
Browse files

Drivers: ccree: ssi_fips_ext.c - align block comments



Fixed block comment alignment, Style fix only
Found using checkpatch

Signed-off-by: default avatarDerek Robson <robsonde@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 161d6dd8
Loading
Loading
Loading
Loading
+23 −23
Original line number Diff line number Diff line
@@ -15,8 +15,8 @@
 */

/**************************************************************
This file defines the driver FIPS functions that should be
implemented by the driver user. Current implementation is sample code only.
 * This file defines the driver FIPS functions that should be
 * implemented by the driver user. Current implementation is sample code only.
 ***************************************************************/

#include <linux/module.h>
@@ -32,10 +32,10 @@ static ssi_fips_state_t fips_state = CC_FIPS_STATE_NOT_SUPPORTED;
static ssi_fips_error_t fips_error = CC_REE_FIPS_ERROR_OK;

/*
This function returns the FIPS REE state.
The function should be implemented by the driver user, depends on where                          .
the state value is stored.
The reference code uses global variable.
 * This function returns the FIPS REE state.
 * The function should be implemented by the driver user, depends on where
 * the state value is stored.
 * The reference code uses global variable.
 */
int ssi_fips_ext_get_state(ssi_fips_state_t *p_state)
{
@@ -51,10 +51,10 @@ int ssi_fips_ext_get_state(ssi_fips_state_t *p_state)
}

/*
This function returns the FIPS REE error.
The function should be implemented by the driver user, depends on where                          .
the error value is stored.
The reference code uses global variable.
 * This function returns the FIPS REE error.
 * The function should be implemented by the driver user, depends on where
 * the error value is stored.
 * The reference code uses global variable.
 */
int ssi_fips_ext_get_error(ssi_fips_error_t *p_err)
{
@@ -70,10 +70,10 @@ int ssi_fips_ext_get_error(ssi_fips_error_t *p_err)
}

/*
This function sets the FIPS REE state.
The function should be implemented by the driver user, depends on where                          .
the state value is stored.
The reference code uses global variable.
 * This function sets the FIPS REE state.
 * The function should be implemented by the driver user, depends on where
 * the state value is stored.
 * The reference code uses global variable.
 */
int ssi_fips_ext_set_state(ssi_fips_state_t state)
{
@@ -82,10 +82,10 @@ int ssi_fips_ext_set_state(ssi_fips_state_t state)
}

/*
This function sets the FIPS REE error.
The function should be implemented by the driver user, depends on where                          .
the error value is stored.
The reference code uses global variable.
 * This function sets the FIPS REE error.
 * The function should be implemented by the driver user, depends on where
 * the error value is stored.
 * The reference code uses global variable.
 */
int ssi_fips_ext_set_error(ssi_fips_error_t err)
{