Commit aff6de05 authored by Melike Yurtoglu's avatar Melike Yurtoglu Committed by Greg Kroah-Hartman

staging: unisys: common-spar: Fix missing blank line warning

Fixes "Missing a blank line after declarations" checkpatch.pl warning
Signed-off-by: default avatarMelike Yurtoglu <aysemelikeyurtoglu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1cd36ed5
...@@ -434,6 +434,7 @@ PathName_Last_N_Nodes(u8 *s, unsigned int n) ...@@ -434,6 +434,7 @@ PathName_Last_N_Nodes(u8 *s, unsigned int n)
{ {
u8 *p = s; u8 *p = s;
unsigned int node_count = 0; unsigned int node_count = 0;
while (*p != '\0') { while (*p != '\0') {
if ((*p == '/') || (*p == '\\')) if ((*p == '/') || (*p == '\\'))
node_count++; node_count++;
...@@ -577,6 +578,7 @@ ULTRA_channel_client_release_os(void __iomem *pChannel, u8 *chanId, ...@@ -577,6 +578,7 @@ ULTRA_channel_client_release_os(void __iomem *pChannel, u8 *chanId,
void *logCtx, char *file, int line, char *func) void *logCtx, char *file, int line, char *func)
{ {
CHANNEL_HEADER __iomem *pChan = pChannel; CHANNEL_HEADER __iomem *pChan = pChannel;
if (readb(&pChan->CliErrorOS) != 0) { if (readb(&pChan->CliErrorOS) != 0) {
/* we are in an error msg throttling state; come out of it */ /* we are in an error msg throttling state; come out of it */
UltraLogEvent(logCtx, CHANNELSTATE_DIAG_EVENTID_TRANSITOK, UltraLogEvent(logCtx, CHANNELSTATE_DIAG_EVENTID_TRANSITOK,
......
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