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
d32812ae
Commit
d32812ae
authored
Mar 31, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dc395x: switch to ->show_info()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
ff98f7ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
16 deletions
+4
-16
drivers/scsi/dc395x.c
drivers/scsi/dc395x.c
+4
-16
No files found.
drivers/scsi/dc395x.c
View file @
d32812ae
...
...
@@ -4616,26 +4616,21 @@ static void adapter_uninit(struct AdapterCtlBlk *acb)
#undef SPRINTF
#define SPRINTF(args...)
pos += sprintf(pos,
args)
#define SPRINTF(args...)
seq_printf(m,##
args)
#undef YESNO
#define YESNO(YN) \
if (YN) SPRINTF(" Yes ");\
else SPRINTF(" No ")
static
int
dc395x_proc_info
(
struct
Scsi_Host
*
host
,
char
*
buffer
,
char
**
start
,
off_t
offset
,
int
length
,
int
inout
)
static
int
dc395x_show_info
(
struct
seq_file
*
m
,
struct
Scsi_Host
*
host
)
{
struct
AdapterCtlBlk
*
acb
=
(
struct
AdapterCtlBlk
*
)
host
->
hostdata
;
int
spd
,
spd1
;
char
*
pos
=
buffer
;
struct
DeviceCtlBlk
*
dcb
;
unsigned
long
flags
;
int
dev
;
if
(
inout
)
/* Has data been written to the file ? */
return
-
EPERM
;
SPRINTF
(
DC395X_BANNER
" PCI SCSI Host Adapter
\n
"
);
SPRINTF
(
" Driver Version "
DC395X_VERSION
"
\n
"
);
...
...
@@ -4735,22 +4730,15 @@ static int dc395x_proc_info(struct Scsi_Host *host, char *buffer,
SPRINTF
(
"END
\n
"
);
}
*
start
=
buffer
+
offset
;
DC395x_UNLOCK_IO
(
acb
->
scsi_host
,
flags
);
if
(
pos
-
buffer
<
offset
)
return
0
;
else
if
(
pos
-
buffer
-
offset
<
length
)
return
pos
-
buffer
-
offset
;
else
return
length
;
return
0
;
}
static
struct
scsi_host_template
dc395x_driver_template
=
{
.
module
=
THIS_MODULE
,
.
proc_name
=
DC395X_NAME
,
.
proc_info
=
dc395x_proc
_info
,
.
show_info
=
dc395x_show
_info
,
.
name
=
DC395X_BANNER
" "
DC395X_VERSION
,
.
queuecommand
=
dc395x_queue_command
,
.
bios_param
=
dc395x_bios_param
,
...
...
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