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
050b4627
Commit
050b4627
authored
Feb 25, 2003
by
Richard Henderson
Browse files
Options
Browse Files
Download
Plain Diff
Merge are.twiddle.net:/home/rth/BK/linus-2.5
into are.twiddle.net:/home/rth/BK/axp-2.5
parents
1a1b6495
2ad6640d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
18 deletions
+1
-18
arch/alpha/kernel/entry.S
arch/alpha/kernel/entry.S
+0
-4
arch/alpha/kernel/pci.c
arch/alpha/kernel/pci.c
+0
-13
include/asm-alpha/bitops.h
include/asm-alpha/bitops.h
+1
-1
No files found.
arch/alpha/kernel/entry.S
View file @
050b4627
...
...
@@ -591,7 +591,6 @@ alpha_switch_to:
*/
.
globl
ret_from_fork
#if CONFIG_SMP || CONFIG_PREEMPT
.
align
4
.
ent
ret_from_fork
ret_from_fork
:
...
...
@@ -599,9 +598,6 @@ ret_from_fork:
mov
$
17
,
$
16
jmp
$
31
,
schedule_tail
.
end
ret_from_fork
#else
ret_from_fork
=
ret_from_sys_call
#endif
/*
*
kernel_thread
(
fn
,
arg
,
clone_flags
)
...
...
arch/alpha/kernel/pci.c
View file @
050b4627
...
...
@@ -62,17 +62,6 @@ quirk_isa_bridge(struct pci_dev *dev)
dev
->
class
=
PCI_CLASS_BRIDGE_ISA
<<
8
;
}
static
void
__init
quirk_ali_ide_ports
(
struct
pci_dev
*
dev
)
{
if
(
dev
->
resource
[
0
].
end
==
0xffff
)
dev
->
resource
[
0
].
end
=
dev
->
resource
[
0
].
start
+
7
;
if
(
dev
->
resource
[
2
].
end
==
0xffff
)
dev
->
resource
[
2
].
end
=
dev
->
resource
[
2
].
start
+
7
;
if
(
dev
->
resource
[
3
].
end
==
0xffff
)
dev
->
resource
[
3
].
end
=
dev
->
resource
[
3
].
start
+
7
;
}
static
void
__init
quirk_cypress
(
struct
pci_dev
*
dev
)
{
...
...
@@ -121,8 +110,6 @@ pcibios_fixup_final(struct pci_dev *dev)
struct
pci_fixup
pcibios_fixups
[]
__initdata
=
{
{
PCI_FIXUP_HEADER
,
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_82378
,
quirk_isa_bridge
},
{
PCI_FIXUP_HEADER
,
PCI_VENDOR_ID_AL
,
PCI_DEVICE_ID_AL_M5229
,
quirk_ali_ide_ports
},
{
PCI_FIXUP_HEADER
,
PCI_VENDOR_ID_CONTAQ
,
PCI_DEVICE_ID_CONTAQ_82C693
,
quirk_cypress
},
{
PCI_FIXUP_FINAL
,
PCI_ANY_ID
,
PCI_ANY_ID
,
...
...
include/asm-alpha/bitops.h
View file @
050b4627
...
...
@@ -288,7 +288,7 @@ static inline unsigned long __ffs(unsigned long word)
#else
unsigned
long
bits
,
qofs
,
bofs
;
bits
=
__kernel_cmpbge
(
word
,
0
);
bits
=
__kernel_cmpbge
(
0
,
word
);
qofs
=
ffz_b
(
bits
);
bits
=
__kernel_extbl
(
word
,
qofs
);
bofs
=
ffz_b
(
~
bits
);
...
...
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