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
4a08171d
Commit
4a08171d
authored
Oct 13, 2002
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Fix fas216 use of __FUNCTION__ macro.
parent
705e28a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
drivers/acorn/scsi/fas216.c
drivers/acorn/scsi/fas216.c
+6
-6
No files found.
drivers/acorn/scsi/fas216.c
View file @
4a08171d
...
...
@@ -2300,8 +2300,8 @@ int fas216_eh_device_reset(Scsi_Cmnd *SCpnt)
{
FAS216_Info
*
info
=
(
FAS216_Info
*
)
SCpnt
->
host
->
hostdata
;
printk
(
"scsi%d.%c:
"
__FUNCTION__
"
: called
\n
"
,
info
->
host
->
host_no
,
'0'
+
SCpnt
->
target
);
printk
(
"scsi%d.%c:
%s
: called
\n
"
,
info
->
host
->
host_no
,
'0'
+
SCpnt
->
target
,
__FUNCTION__
);
return
FAILED
;
}
...
...
@@ -2320,8 +2320,8 @@ int fas216_eh_bus_reset(Scsi_Cmnd *SCpnt)
info
->
stats
.
bus_resets
+=
1
;
printk
(
"scsi%d.%c:
"
__FUNCTION__
"
: resetting bus
\n
"
,
info
->
host
->
host_no
,
'0'
+
SCpnt
->
target
);
printk
(
"scsi%d.%c:
%s
: resetting bus
\n
"
,
info
->
host
->
host_no
,
'0'
+
SCpnt
->
target
,
__FUNCTION__
);
/*
* Attempt to stop all activity on this interface.
...
...
@@ -2381,8 +2381,8 @@ int fas216_eh_host_reset(Scsi_Cmnd *SCpnt)
fas216_checkmagic
(
info
);
printk
(
"scsi%d.%c:
"
__FUNCTION__
"
: resetting host
\n
"
,
info
->
host
->
host_no
,
'0'
+
SCpnt
->
target
);
printk
(
"scsi%d.%c:
%s
: resetting host
\n
"
,
info
->
host
->
host_no
,
'0'
+
SCpnt
->
target
,
__FUNCTION__
);
/*
* Reset the SCSI chip.
...
...
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