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
d7c5d14c
Commit
d7c5d14c
authored
Apr 07, 2002
by
David Mosberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Misc fixes.
parent
25fb6642
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
arch/ia64/hp/zx1/hpzx1_misc.c
arch/ia64/hp/zx1/hpzx1_misc.c
+3
-3
arch/ia64/kernel/efi.c
arch/ia64/kernel/efi.c
+1
-1
arch/ia64/kernel/setup.c
arch/ia64/kernel/setup.c
+1
-1
No files found.
arch/ia64/hp/zx1/hpzx1_misc.c
View file @
d7c5d14c
...
...
@@ -191,8 +191,8 @@ typedef struct {
#define HP_CCSR_LENGTH 0x21
#define HP_CCSR_TYPE 0x2
#define HP_CCSR_GUID \
((efi_guid_t) { 0x69e9adf9, 0x924f, 0xab5f, { 0xf6, 0x4a, 0x24, 0xd2, 0x01, 0x37, 0x0e, 0xad }}
)
#define HP_CCSR_GUID
EFI_GUID(0x69e9adf9, 0x924f, 0xab5f,
\
0xf6, 0x4a, 0x24, 0xd2, 0x01, 0x37, 0x0e, 0xad
)
extern
acpi_status
acpi_get_crs
(
acpi_handle
,
acpi_buffer
*
);
extern
acpi_resource
*
acpi_get_crs_next
(
acpi_buffer
*
,
int
*
);
...
...
@@ -577,7 +577,7 @@ hpzx1_fake_pci_dev(unsigned long addr, unsigned int bus, unsigned int size)
* Drivers should ioremap what they need, but we have to do
* it here, too, so PCI config accesses work.
*/
dev
->
mapped_csrs
=
ioremap
(
dev
->
csr_base
,
dev
->
csr_size
);
dev
->
mapped_csrs
=
(
unsigned
long
)
ioremap
(
dev
->
csr_base
,
dev
->
csr_size
);
return
dev
;
}
...
...
arch/ia64/kernel/efi.c
View file @
d7c5d14c
...
...
@@ -250,7 +250,7 @@ efi_map_pal_code (void)
* dedicated ITR for the PAL code.
*/
if
((
vaddr
&
mask
)
==
(
KERNEL_START
&
mask
))
{
printk
(
__FUNCTION__
": no need to install ITR for PAL code
\n
"
);
printk
(
"%s: no need to install ITR for PAL code
\n
"
,
__FUNCTION__
);
continue
;
}
...
...
arch/ia64/kernel/setup.c
View file @
d7c5d14c
...
...
@@ -334,7 +334,7 @@ setup_arch (char **cmdline_p)
printk
(
"No I/O port range found in EFI memory map, falling back to AR.KR0
\n
"
);
printk
(
"I/O port base = 0x%lx
\n
"
,
phys_iobase
);
}
ia64_iobase
=
ioremap
(
phys_iobase
);
ia64_iobase
=
(
unsigned
long
)
ioremap
(
phys_iobase
,
0
);
#ifdef CONFIG_SMP
cpu_physical_id
(
0
)
=
hard_smp_processor_id
();
...
...
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