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
b3f4d558
Commit
b3f4d558
authored
Feb 26, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc64: fix non-iSeries build
parent
28464a05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
arch/ppc64/kernel/iSeries_iommu.c
arch/ppc64/kernel/iSeries_iommu.c
+9
-1
arch/ppc64/kernel/ppc_ksyms.c
arch/ppc64/kernel/ppc_ksyms.c
+0
-6
No files found.
arch/ppc64/kernel/iSeries_iommu.c
View file @
b3f4d558
...
@@ -58,8 +58,16 @@ static struct iSeries_Device_Node vio_dev_node = { .LogicalSlot = 0xFF, .iommu_
...
@@ -58,8 +58,16 @@ static struct iSeries_Device_Node vio_dev_node = { .LogicalSlot = 0xFF, .iommu_
static
struct
pci_dev
_veth_dev
=
{
.
sysdata
=
&
veth_dev_node
};
static
struct
pci_dev
_veth_dev
=
{
.
sysdata
=
&
veth_dev_node
};
static
struct
pci_dev
_vio_dev
=
{
.
sysdata
=
&
vio_dev_node
,
.
dev
.
bus
=
&
pci_bus_type
};
static
struct
pci_dev
_vio_dev
=
{
.
sysdata
=
&
vio_dev_node
,
.
dev
.
bus
=
&
pci_bus_type
};
/*
* I wonder what the deal is with these. Nobody uses them. Why do they
* exist? Why do we export them to modules? Why is this comment here, and
* why didn't I just delete them?
*/
struct
pci_dev
*
iSeries_veth_dev
=
&
_veth_dev
;
struct
pci_dev
*
iSeries_veth_dev
=
&
_veth_dev
;
struct
device
*
iSeries_vio_dev
=
&
_vio_dev
.
dev
;
struct
device
*
iSeries_vio_dev
=
&
_vio_dev
.
dev
;
EXPORT_SYMBOL
(
iSeries_veth_dev
);
EXPORT_SYMBOL
(
iSeries_vio_dev
);
extern
struct
list_head
iSeries_Global_Device_List
;
extern
struct
list_head
iSeries_Global_Device_List
;
...
...
arch/ppc64/kernel/ppc_ksyms.c
View file @
b3f4d558
...
@@ -53,9 +53,6 @@ extern int do_signal(sigset_t *, struct pt_regs *);
...
@@ -53,9 +53,6 @@ extern int do_signal(sigset_t *, struct pt_regs *);
int
abs
(
int
);
int
abs
(
int
);
extern
struct
pci_dev
*
iSeries_veth_dev
;
extern
struct
pci_dev
*
iSeries_vio_dev
;
EXPORT_SYMBOL
(
do_signal
);
EXPORT_SYMBOL
(
do_signal
);
EXPORT_SYMBOL
(
sys_ioctl
);
EXPORT_SYMBOL
(
sys_ioctl
);
...
@@ -157,9 +154,6 @@ EXPORT_SYMBOL(eeh_total_mmio_ffs);
...
@@ -157,9 +154,6 @@ EXPORT_SYMBOL(eeh_total_mmio_ffs);
#endif
/* CONFIG_PPC_ISERIES */
#endif
/* CONFIG_PPC_ISERIES */
#endif
/* CONFIG_PCI */
#endif
/* CONFIG_PCI */
EXPORT_SYMBOL
(
iSeries_veth_dev
);
EXPORT_SYMBOL
(
iSeries_vio_dev
);
EXPORT_SYMBOL
(
start_thread
);
EXPORT_SYMBOL
(
start_thread
);
EXPORT_SYMBOL
(
kernel_thread
);
EXPORT_SYMBOL
(
kernel_thread
);
...
...
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