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
bf1c989a
Commit
bf1c989a
authored
May 24, 2002
by
David Mosberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia64: Sync up with 2.5.18.
parent
ca4e406a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
arch/ia64/kernel/pci.c
arch/ia64/kernel/pci.c
+1
-1
arch/ia64/mm/init.c
arch/ia64/mm/init.c
+0
-1
include/asm-ia64/bitops.h
include/asm-ia64/bitops.h
+6
-0
No files found.
arch/ia64/kernel/pci.c
View file @
bf1c989a
...
...
@@ -199,7 +199,7 @@ pcibios_config_init (void)
return
;
}
void
__init
static
int
__init
pcibios_init
(
void
)
{
# define PCI_BUSES_TO_SCAN 255
...
...
arch/ia64/mm/init.c
View file @
bf1c989a
...
...
@@ -206,7 +206,6 @@ show_mem(void)
printk
(
"%d pages shared
\n
"
,
shared
);
printk
(
"%d pages swap cached
\n
"
,
cached
);
printk
(
"%ld pages in page table cache
\n
"
,
pgtable_cache_size
);
printk
(
"%ld buffermem pages
\n
"
,
nr_buffermem_pages
());
#endif
/* !CONFIG_DISCONTIGMEM */
}
...
...
include/asm-ia64/bitops.h
View file @
bf1c989a
...
...
@@ -326,6 +326,12 @@ ia64_fls (unsigned long x)
return
exp
-
0xffff
;
}
static
int
fls
(
int
x
)
{
return
ia64_fls
((
unsigned
int
)
x
);
}
/*
* ffs: find first bit set. This is defined the same way as the libc and compiler builtin
* ffs routines, therefore differs in spirit from the above ffz (man ffs): it operates on
...
...
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