Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
00da91f2
Commit
00da91f2
authored
Feb 17, 2003
by
Alan Cox
Committed by
Linus Torvalds
Feb 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] fix some escaped globals
parent
5ef7c68b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
drivers/ide/pci/cy82c693.c
drivers/ide/pci/cy82c693.c
+3
-3
drivers/ide/pci/cy82c693.h
drivers/ide/pci/cy82c693.h
+3
-3
No files found.
drivers/ide/pci/cy82c693.c
View file @
00da91f2
/*
/*
* linux/drivers/ide/cy82c693.c Version 0.40 Sep. 10, 2002
* linux/drivers/ide/
pci/
cy82c693.c Version 0.40 Sep. 10, 2002
*
*
* Copyright (C) 1998-2000 Andreas S. Krebs (akrebs@altavista.net), Maintainer
* Copyright (C) 1998-2000 Andreas S. Krebs (akrebs@altavista.net), Maintainer
* Copyright (C) 1998-2002 Andre Hedrick <andre@linux-ide.org>, Integrater
* Copyright (C) 1998-2002 Andre Hedrick <andre@linux-ide.org>, Integrater
...
@@ -335,7 +335,7 @@ static void cy82c693_tune_drive (ide_drive_t *drive, u8 pio)
...
@@ -335,7 +335,7 @@ static void cy82c693_tune_drive (ide_drive_t *drive, u8 pio)
/*
/*
* this function is called during init and is used to setup the cy82c693 chip
* this function is called during init and is used to setup the cy82c693 chip
*/
*/
unsigned
int
__init
init_chipset_cy82c693
(
struct
pci_dev
*
dev
,
const
char
*
name
)
static
unsigned
int
__init
init_chipset_cy82c693
(
struct
pci_dev
*
dev
,
const
char
*
name
)
{
{
if
(
PCI_FUNC
(
dev
->
devfn
)
!=
1
)
if
(
PCI_FUNC
(
dev
->
devfn
)
!=
1
)
return
0
;
return
0
;
...
@@ -387,7 +387,7 @@ unsigned int __init init_chipset_cy82c693(struct pci_dev *dev, const char *name)
...
@@ -387,7 +387,7 @@ unsigned int __init init_chipset_cy82c693(struct pci_dev *dev, const char *name)
/*
/*
* the init function - called for each ide channel once
* the init function - called for each ide channel once
*/
*/
void
__init
init_hwif_cy82c693
(
ide_hwif_t
*
hwif
)
static
void
__init
init_hwif_cy82c693
(
ide_hwif_t
*
hwif
)
{
{
hwif
->
autodma
=
0
;
hwif
->
autodma
=
0
;
...
...
drivers/ide/pci/cy82c693.h
View file @
00da91f2
...
@@ -64,9 +64,9 @@ typedef struct pio_clocks_s {
...
@@ -64,9 +64,9 @@ typedef struct pio_clocks_s {
u8
time_8
;
/* clocks for 8bit (0xF0=Active/data, 0x0F=Recovery) */
u8
time_8
;
/* clocks for 8bit (0xF0=Active/data, 0x0F=Recovery) */
}
pio_clocks_t
;
}
pio_clocks_t
;
extern
unsigned
int
init_chipset_cy82c693
(
struct
pci_dev
*
,
const
char
*
);
static
unsigned
int
init_chipset_cy82c693
(
struct
pci_dev
*
,
const
char
*
);
extern
void
init_hwif_cy82c693
(
ide_hwif_t
*
);
static
void
init_hwif_cy82c693
(
ide_hwif_t
*
);
extern
void
init_iops_cy82c693
(
ide_hwif_t
*
);
static
void
init_iops_cy82c693
(
ide_hwif_t
*
);
static
ide_pci_device_t
cy82c693_chipsets
[]
__devinitdata
=
{
static
ide_pci_device_t
cy82c693_chipsets
[]
__devinitdata
=
{
{
/* 0 */
{
/* 0 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment