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
nexedi
linux
Commits
5898aa13
Commit
5898aa13
authored
Aug 21, 2017
by
Helge Deller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parisc/scsi/zalon: Fix section mismatches
Signed-off-by:
Helge Deller
<
deller@gmx.de
>
parent
9e466f10
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
drivers/scsi/zalon.c
drivers/scsi/zalon.c
+4
-4
No files found.
drivers/scsi/zalon.c
View file @
5898aa13
...
...
@@ -160,14 +160,14 @@ zalon_probe(struct parisc_device *dev)
return
error
;
}
static
struct
parisc_device_id
zalon_tbl
[]
=
{
static
const
struct
parisc_device_id
zalon_tbl
[]
__initconst
=
{
{
HPHW_A_DMA
,
HVERSION_REV_ANY_ID
,
HVERSION_ANY_ID
,
0x00089
},
{
0
,
}
};
MODULE_DEVICE_TABLE
(
parisc
,
zalon_tbl
);
static
int
zalon_remove
(
struct
parisc_device
*
dev
)
static
int
__exit
zalon_remove
(
struct
parisc_device
*
dev
)
{
struct
Scsi_Host
*
host
=
dev_get_drvdata
(
&
dev
->
dev
);
...
...
@@ -178,11 +178,11 @@ static int zalon_remove(struct parisc_device *dev)
return
0
;
}
static
struct
parisc_driver
zalon_driver
=
{
static
struct
parisc_driver
zalon_driver
__refdata
=
{
.
name
=
"zalon"
,
.
id_table
=
zalon_tbl
,
.
probe
=
zalon_probe
,
.
remove
=
zalon_remove
,
.
remove
=
__exit_p
(
zalon_remove
)
,
};
static
int
__init
zalon7xx_init
(
void
)
...
...
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