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
fa13dd7c
Commit
fa13dd7c
authored
May 05, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge gregkh@kernel.bkbits.net:/home/gregkh/linux/i2c-2.5
into kroah.com:/home/greg/linux/BK/i2c-2.5
parents
232adff4
952461e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
11 deletions
+7
-11
MAINTAINERS
MAINTAINERS
+3
-10
drivers/i2c/chips/it87.c
drivers/i2c/chips/it87.c
+2
-0
drivers/i2c/i2c-keywest.c
drivers/i2c/i2c-keywest.c
+2
-1
No files found.
MAINTAINERS
View file @
fa13dd7c
...
...
@@ -801,20 +801,13 @@ P: Oliver Neukum
M: drivers@neukum.org
S: Maintained
I2C DRIVERS
P: Simon Vogl
M: simon@tk.uni-linz.ac.at
P: Frodo Looijaard
M: frodol@dds.nl
L: linux-i2c@pelican.tk.uni-linz.ac.at
W: http://www.tk.uni-linz.ac.at/~simon/private/i2c
S: Maintained
SENSORS DRIVERS
I2C AND SENSORS DRIVERS
P: Frodo Looijaard
M: frodol@dds.nl
P: Philip Edelbrock
M: phil@netroedge.com
P: Greg Kroah-Hartman
M: greg@kroah.com
L: sensors@stimpy.netroedge.com
W: http://www.lm-sensors.nu/
S: Maintained
...
...
drivers/i2c/chips/it87.c
View file @
fa13dd7c
...
...
@@ -585,6 +585,8 @@ int it87_detect(struct i2c_adapter *adapter, int address, int kind)
err
=
-
ENOMEM
;
goto
ERROR1
;
}
memset
(
new_client
,
0x00
,
sizeof
(
struct
i2c_client
)
+
sizeof
(
struct
it87_data
));
data
=
(
struct
it87_data
*
)
(
new_client
+
1
);
if
(
is_isa
)
...
...
drivers/i2c/i2c-keywest.c
View file @
fa13dd7c
...
...
@@ -212,7 +212,7 @@ handle_interrupt(struct keywest_iface *iface, u8 isr)
#ifndef POLLED_MODE
/* Interrupt handler */
static
void
static
irqreturn_t
keywest_irq
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
{
struct
keywest_iface
*
iface
=
(
struct
keywest_iface
*
)
dev_id
;
...
...
@@ -225,6 +225,7 @@ keywest_irq(int irq, void *dev_id, struct pt_regs *regs)
add_timer
(
&
iface
->
timeout_timer
);
}
spin_unlock
(
&
iface
->
lock
);
return
IRQ_HANDLED
;
}
static
void
...
...
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