Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
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-2.6.23
Commits
6f85a859
Commit
6f85a859
authored
Feb 28, 2007
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SUNHME]: Use pci_device_to_OF_node().
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
457e1a8a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
13 deletions
+5
-13
drivers/net/sunhme.c
drivers/net/sunhme.c
+5
-13
No files found.
drivers/net/sunhme.c
View file @
6f85a859
...
...
@@ -55,9 +55,6 @@
#ifdef CONFIG_PCI
#include <linux/pci.h>
#ifdef CONFIG_SPARC
#include <asm/pbm.h>
#endif
#endif
#include "sunhme.h"
...
...
@@ -2986,7 +2983,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
{
struct
quattro
*
qp
=
NULL
;
#ifdef CONFIG_SPARC
struct
pcidev_cookie
*
pc
p
;
struct
device_node
*
d
p
;
#endif
struct
happy_meal
*
hp
;
struct
net_device
*
dev
;
...
...
@@ -2998,13 +2995,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
/* Now make sure pci_dev cookie is there. */
#ifdef CONFIG_SPARC
pcp
=
pdev
->
sysdata
;
if
(
pcp
==
NULL
)
{
printk
(
KERN_ERR
"happymeal(PCI): Some PCI device info missing
\n
"
);
return
-
ENODEV
;
}
strcpy
(
prom_name
,
pcp
->
prom_node
->
name
);
dp
=
pci_device_to_OF_node
(
pdev
);
strcpy
(
prom_name
,
dp
->
name
);
#else
if
(
is_quattro_p
(
pdev
))
strcpy
(
prom_name
,
"SUNW,qfe"
);
...
...
@@ -3085,7 +3077,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
int
len
;
if
(
qfe_slot
!=
-
1
&&
(
addr
=
of_get_property
(
pcp
->
prom_node
,
(
addr
=
of_get_property
(
dp
,
"local-mac-address"
,
&
len
))
!=
NULL
&&
len
==
6
)
{
memcpy
(
dev
->
dev_addr
,
addr
,
6
);
...
...
@@ -3105,7 +3097,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
hp
->
tcvregs
=
(
hpreg_base
+
0x7000UL
);
#ifdef CONFIG_SPARC
hp
->
hm_revision
=
of_getintprop_default
(
pcp
->
prom_node
,
"hm-rev"
,
0xff
);
hp
->
hm_revision
=
of_getintprop_default
(
dp
,
"hm-rev"
,
0xff
);
if
(
hp
->
hm_revision
==
0xff
)
{
unsigned
char
prev
;
...
...
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