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

Commit e9eff9d6 authored by Lior Dotan's avatar Lior Dotan Committed by Greg Kroah-Hartman
Browse files

Staging: SLICOSS: lots of checkpatch fixes



Major cleanups of checkpatch warnings from the slicoss driver.

From: Lior Dotan <liodot@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent df20d69e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
#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,
};
+3 −4
Original line number Diff line number Diff line
/*
 * 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
@@ -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] =
{
+5 −5
Original line number Diff line number Diff line
#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,
};
+5 −5
Original line number Diff line number Diff line
#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,
};

+3 −3
Original line number Diff line number Diff line
#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] =
{
Loading