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
c101f313
Commit
c101f313
authored
Jul 06, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
parents
359ea2f1
e3e01d60
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
MAINTAINERS
MAINTAINERS
+1
-1
arch/sparc64/kernel/irq.c
arch/sparc64/kernel/irq.c
+5
-2
drivers/media/dvb/frontends/tda80xx.c
drivers/media/dvb/frontends/tda80xx.c
+0
-1
include/asm-sparc64/parport.h
include/asm-sparc64/parport.h
+2
-2
No files found.
MAINTAINERS
View file @
c101f313
...
...
@@ -2161,7 +2161,7 @@ UltraSPARC (sparc64):
P: David S. Miller
M: davem@davemloft.net
P: Eddie C. Dost
M: ecd@
skynet.b
e
M: ecd@
brainaid.d
e
P: Jakub Jelinek
M: jj@sunsite.ms.mff.cuni.cz
P: Anton Blanchard
...
...
arch/sparc64/kernel/irq.c
View file @
c101f313
...
...
@@ -917,7 +917,8 @@ static int irq_affinity_read_proc (char *page, char **start, off_t off,
int
count
,
int
*
eof
,
void
*
data
)
{
struct
ino_bucket
*
bp
=
ivector_table
+
(
long
)
data
;
struct
irqaction
*
ap
=
bp
->
irq_info
;
struct
irq_desc
*
desc
=
bp
->
irq_info
;
struct
irqaction
*
ap
=
desc
->
action
;
cpumask_t
mask
;
int
len
;
...
...
@@ -935,11 +936,13 @@ static int irq_affinity_read_proc (char *page, char **start, off_t off,
static
inline
void
set_intr_affinity
(
int
irq
,
cpumask_t
hw_aff
)
{
struct
ino_bucket
*
bp
=
ivector_table
+
irq
;
struct
irq_desc
*
desc
=
bp
->
irq_info
;
struct
irqaction
*
ap
=
desc
->
action
;
/* Users specify affinity in terms of hw cpu ids.
* As soon as we do this, handler_irq() might see and take action.
*/
put_smpaff_in_irqaction
(
(
struct
irqaction
*
)
bp
->
irq_info
,
hw_aff
);
put_smpaff_in_irqaction
(
ap
,
hw_aff
);
/* Migration is simply done by the next cpu to service this
* interrupt.
...
...
drivers/media/dvb/frontends/tda80xx.c
View file @
c101f313
...
...
@@ -27,7 +27,6 @@
#include <linux/spinlock.h>
#include <linux/threads.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
...
...
include/asm-sparc64/parport.h
View file @
c101f313
...
...
@@ -27,12 +27,12 @@ static struct sparc_ebus_info {
static
__inline__
void
enable_dma
(
unsigned
int
dmanr
)
{
ebus_dma_enable
(
&
sparc_ebus_dmas
[
dmanr
].
info
,
1
);
if
(
ebus_dma_request
(
&
sparc_ebus_dmas
[
dmanr
].
info
,
sparc_ebus_dmas
[
dmanr
].
addr
,
sparc_ebus_dmas
[
dmanr
].
count
))
BUG
();
ebus_dma_enable
(
&
sparc_ebus_dmas
[
dmanr
].
info
,
1
);
}
static
__inline__
void
disable_dma
(
unsigned
int
dmanr
)
...
...
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