Skip to content

Commit

Permalink
Staging: SLICOSS: lots of checkpatch fixes
Browse files Browse the repository at this point in the history
Major cleanups of checkpatch warnings from the slicoss driver.

From: Lior Dotan <liodot@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Lior Dotan authored and Greg Kroah-Hartman committed Oct 10, 2008
1 parent df20d69 commit e9eff9d
Show file tree
Hide file tree
Showing 13 changed files with 1,353 additions and 1,619 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/slicoss/gbdownload.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#define MOJAVE_UCODE_VERS_STRING "$Revision: 1.2 $"
#define MOJAVE_UCODE_VERS_DATE "$Date: 2006/03/27 15:12:22 $"
#define MOJAVE_UCODE_VERS_STRING "1.2"
#define MOJAVE_UCODE_VERS_DATE "2006/03/27 15:12:22"
#define MOJAVE_UCODE_HOSTIF_ID 3

static LONG MNumSections = 0x2;
static ULONG MSectionSize[] =
static s32 MNumSections = 0x2;
static u32 MSectionSize[] =
{
0x00008000, 0x00010000,
};

static ULONG MSectionStart[] =
static u32 MSectionStart[] =
{
0x00000000, 0x00008000,
};
Expand Down
7 changes: 3 additions & 4 deletions drivers/staging/slicoss/gbrcvucode.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) 1997-2002 Alacritech, Inc. All rights reserved
*
* $Id: gbrcvucode.h,v 1.2 2006/03/27 15:12:15 mook Exp $
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -32,10 +31,10 @@
* official policies, either expressed or implied, of Alacritech, Inc.
*
**************************************************************************/
#define GB_RCVUCODE_VERS_STRING "$Revision: 1.2 $"
#define GB_RCVUCODE_VERS_DATE "$Date: 2006/03/27 15:12:15 $"
#define GB_RCVUCODE_VERS_STRING "1.2"
#define GB_RCVUCODE_VERS_DATE "2006/03/27 15:12:15"

static ULONG GBRcvUCodeLen = 512;
static u32 GBRcvUCodeLen = 512;

static u8 GBRcvUCode[2560] =
{
Expand Down
10 changes: 5 additions & 5 deletions drivers/staging/slicoss/oasisdbgdownload.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#define OASIS_UCODE_VERS_STRING "$Revision: 1.2 $"
#define OASIS_UCODE_VERS_DATE "$Date: 2006/03/27 15:11:22 $"
#define OASIS_UCODE_VERS_STRING "1.2"
#define OASIS_UCODE_VERS_DATE "2006/03/27 15:11:22"
#define OASIS_UCODE_HOSTIF_ID 3

static LONG ONumSections = 0x2;
static ULONG OSectionSize[] =
static s32 ONumSections = 0x2;
static u32 OSectionSize[] =
{
0x00004000, 0x00010000,
};

static ULONG OSectionStart[] =
static u32 OSectionStart[] =
{
0x00000000, 0x00008000,
};
Expand Down
10 changes: 5 additions & 5 deletions drivers/staging/slicoss/oasisdownload.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#define OASIS_UCODE_VERS_STRING "$Revision: 1.2 $"
#define OASIS_UCODE_VERS_DATE "$Date: 2006/03/27 15:10:37 $"
#define OASIS_UCODE_VERS_STRING "1.2"
#define OASIS_UCODE_VERS_DATE "2006/03/27 15:10:37"
#define OASIS_UCODE_HOSTIF_ID 3

static LONG ONumSections = 0x2;
static ULONG OSectionSize[] = {
static s32 ONumSections = 0x2;
static u32 OSectionSize[] = {
0x00004000, 0x00010000,
};

static ULONG OSectionStart[] = {
static u32 OSectionStart[] = {
0x00000000, 0x00008000,
};

Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/slicoss/oasisrcvucode.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define OASIS_RCVUCODE_VERS_STRING "$Revision: 1.2 $"
#define OASIS_RCVUCODE_VERS_DATE "$Date: 2006/03/27 15:10:28 $"
#define OASIS_RCVUCODE_VERS_STRING "1.2"
#define OASIS_RCVUCODE_VERS_DATE "2006/03/27 15:10:28"

static ULONG OasisRcvUCodeLen = 512;
static u32 OasisRcvUCodeLen = 512;

static u8 OasisRcvUCode[2560] =
{
Expand Down
Loading

0 comments on commit e9eff9d

Please sign in to comment.