Commit 3a82eb63 authored by Derek Robson's avatar Derek Robson Committed by Greg Kroah-Hartman

Drivers: ccree: ssi_fips.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 cbff7602
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
/************************************************************** /**************************************************************
This file defines the driver FIPS APIs * * This file defines the driver FIPS APIs *
***************************************************************/ **************************************************************/
#include <linux/module.h> #include <linux/module.h>
#include "ssi_fips.h" #include "ssi_fips.h"
...@@ -27,9 +27,9 @@ extern int ssi_fips_ext_get_state(ssi_fips_state_t *p_state); ...@@ -27,9 +27,9 @@ extern int ssi_fips_ext_get_state(ssi_fips_state_t *p_state);
extern int ssi_fips_ext_get_error(ssi_fips_error_t *p_err); extern int ssi_fips_ext_get_error(ssi_fips_error_t *p_err);
/* /*
This function returns the REE FIPS state. * This function returns the REE FIPS state.
It should be called by kernel module. * It should be called by kernel module.
*/ */
int ssi_fips_get_state(ssi_fips_state_t *p_state) int ssi_fips_get_state(ssi_fips_state_t *p_state)
{ {
int rc = 0; int rc = 0;
...@@ -46,9 +46,9 @@ int ssi_fips_get_state(ssi_fips_state_t *p_state) ...@@ -46,9 +46,9 @@ int ssi_fips_get_state(ssi_fips_state_t *p_state)
EXPORT_SYMBOL(ssi_fips_get_state); EXPORT_SYMBOL(ssi_fips_get_state);
/* /*
This function returns the REE FIPS error. * This function returns the REE FIPS error.
It should be called by kernel module. * It should be called by kernel module.
*/ */
int ssi_fips_get_error(ssi_fips_error_t *p_err) int ssi_fips_get_error(ssi_fips_error_t *p_err)
{ {
int rc = 0; int rc = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment