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
57cf0f92
Commit
57cf0f92
authored
Apr 13, 2003
by
Ben Collins
Committed by
Linus Torvalds
Apr 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Fix nodemgr.c compile
parent
8618580f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
29 deletions
+0
-29
drivers/ieee1394/nodemgr.c
drivers/ieee1394/nodemgr.c
+0
-29
No files found.
drivers/ieee1394/nodemgr.c
View file @
57cf0f92
...
...
@@ -1010,33 +1010,6 @@ static void nodemgr_process_unit_directory(struct host_info *hi, struct node_ent
kfree
(
ud
);
}
static
void
dump_directories
(
struct
node_entry
*
ne
)
{
#ifdef CONFIG_IEEE1394_VERBOSEDEBUG
struct
list_head
*
l
;
HPSB_DEBUG
(
"vendor_id=0x%06x [%s], capabilities=0x%06x"
,
ne
->
vendor_id
,
ne
->
vendor_name
?:
"Unknown"
,
ne
->
capabilities
);
list_for_each
(
l
,
&
ne
->
unit_directories
)
{
struct
unit_directory
*
ud
=
list_entry
(
l
,
struct
unit_directory
,
node_list
);
HPSB_DEBUG
(
"unit directory:"
);
if
(
ud
->
flags
&
UNIT_DIRECTORY_VENDOR_ID
)
HPSB_DEBUG
(
" vendor_id=0x%06x [%s]"
,
ud
->
vendor_id
,
ud
->
vendor_name
?:
"Unknown"
);
if
(
ud
->
flags
&
UNIT_DIRECTORY_MODEL_ID
)
HPSB_DEBUG
(
" model_id=0x%06x [%s]"
,
ud
->
model_id
,
ud
->
model_name
?:
"Unknown"
);
if
(
ud
->
flags
&
UNIT_DIRECTORY_SPECIFIER_ID
)
HPSB_DEBUG
(
" sw_specifier_id=0x%06x "
,
ud
->
specifier_id
);
if
(
ud
->
flags
&
UNIT_DIRECTORY_VERSION
)
HPSB_DEBUG
(
" sw_version=0x%06x "
,
ud
->
version
);
}
#endif
return
;
}
static
void
nodemgr_process_root_directory
(
struct
host_info
*
hi
,
struct
node_entry
*
ne
)
{
...
...
@@ -1104,8 +1077,6 @@ static void nodemgr_process_root_directory(struct host_info *hi, struct node_ent
break
;
}
}
dump_directories
(
ne
);
}
#ifdef CONFIG_HOTPLUG
...
...
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