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
63bb1865
Commit
63bb1865
authored
Apr 23, 2003
by
Justin T. Gibbs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Aic7xxx and Aic79xx Driver Update
o Correct channel information in our /proc output.
parent
36da50bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
drivers/scsi/aic7xxx/aic79xx_proc.c
drivers/scsi/aic7xxx/aic79xx_proc.c
+2
-3
drivers/scsi/aic7xxx/aic7xxx_proc.c
drivers/scsi/aic7xxx/aic7xxx_proc.c
+4
-3
No files found.
drivers/scsi/aic7xxx/aic79xx_proc.c
View file @
63bb1865
...
...
@@ -37,7 +37,7 @@
* String handling code courtesy of Gerard Roudier's <groudier@club-internet.fr>
* sym driver.
*
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_proc.c#1
5
$
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_proc.c#1
6
$
*/
#include "aic79xx_osm.h"
#include "aic79xx_inline.h"
...
...
@@ -173,8 +173,7 @@ ahd_dump_target_state(struct ahd_softc *ahd, struct info_str *info,
tinfo
=
ahd_fetch_transinfo
(
ahd
,
channel
,
our_id
,
target_id
,
&
tstate
);
copy_info
(
info
,
"Channel %c, Target %d Negotiation Settings
\n
"
,
channel
,
target_id
);
copy_info
(
info
,
"Target %d Negotiation Settings
\n
"
,
target_id
);
copy_info
(
info
,
"
\t
User: "
);
ahd_format_transinfo
(
info
,
&
tinfo
->
user
);
targ
=
ahd
->
platform_data
->
targets
[
target_offset
];
...
...
drivers/scsi/aic7xxx/aic7xxx_proc.c
View file @
63bb1865
...
...
@@ -37,7 +37,7 @@
* String handling code courtesy of Gerard Roudier's <groudier@club-internet.fr>
* sym driver.
*
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_proc.c#2
5
$
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_proc.c#2
6
$
*/
#include "aic7xxx_osm.h"
#include "aic7xxx_inline.h"
...
...
@@ -148,8 +148,9 @@ ahc_dump_target_state(struct ahc_softc *ahc, struct info_str *info,
tinfo
=
ahc_fetch_transinfo
(
ahc
,
channel
,
our_id
,
target_id
,
&
tstate
);
copy_info
(
info
,
"Channel %c Target %d Negotiation Settings
\n
"
,
channel
,
target_id
);
if
((
ahc
->
features
&
AHC_TWIN
)
!=
0
)
copy_info
(
info
,
"Channel %c "
,
channel
);
copy_info
(
info
,
"Target %d Negotiation Settings
\n
"
,
target_id
);
copy_info
(
info
,
"
\t
User: "
);
ahc_format_transinfo
(
info
,
&
tinfo
->
user
);
targ
=
ahc
->
platform_data
->
targets
[
target_offset
];
...
...
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