Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
0b522497
Commit
0b522497
authored
Feb 12, 2006
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SPARC64]: Missing 'return' statement in sun4v_pci_init().
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
c2609267
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
arch/sparc64/kernel/pci_sun4v.c
arch/sparc64/kernel/pci_sun4v.c
+3
-4
No files found.
arch/sparc64/kernel/pci_sun4v.c
View file @
0b522497
...
...
@@ -916,8 +916,10 @@ void sun4v_pci_init(int node, char *model_name)
&
p
->
pbm_A
:
&
p
->
pbm_B
);
if
(
pbm
->
devhandle
==
(
devhandle
^
0x40
))
if
(
pbm
->
devhandle
==
(
devhandle
^
0x40
))
{
pci_sun4v_pbm_init
(
p
,
node
,
devhandle
);
return
;
}
}
p
=
kmalloc
(
sizeof
(
struct
pci_controller_info
),
GFP_ATOMIC
);
...
...
@@ -961,7 +963,4 @@ void sun4v_pci_init(int node, char *model_name)
pci_memspace_mask
=
0x7fffffffUL
;
pci_sun4v_pbm_init
(
p
,
node
,
devhandle
);
prom_printf
(
"sun4v_pci_init: Implement me.
\n
"
);
prom_halt
();
}
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