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
db955170
Commit
db955170
authored
Oct 19, 2007
by
Marcin Garski
Committed by
Adrian Bunk
Oct 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more UTF-8 conversions
Signed-off-by:
Adrian Bunk
<
bunk@kernel.org
>
parent
96de0e25
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
16 additions
and
16 deletions
+16
-16
Documentation/i2c/i2c-protocol
Documentation/i2c/i2c-protocol
+1
-1
arch/x86/kernel/cpu/cyrix.c
arch/x86/kernel/cpu/cyrix.c
+1
-1
drivers/media/video/saa5246a.c
drivers/media/video/saa5246a.c
+2
-2
drivers/media/video/saa5249.c
drivers/media/video/saa5249.c
+2
-2
drivers/misc/sony-laptop.c
drivers/misc/sony-laptop.c
+1
-1
drivers/video/vermilion/vermilion.c
drivers/video/vermilion/vermilion.c
+2
-2
drivers/video/vermilion/vermilion.h
drivers/video/vermilion/vermilion.h
+1
-1
net/irda/irlan/irlan_client_event.c
net/irda/irlan/irlan_client_event.c
+1
-1
net/irda/irlan/irlan_filter.c
net/irda/irlan/irlan_filter.c
+1
-1
net/irda/timer.c
net/irda/timer.c
+1
-1
net/irda/wrapper.c
net/irda/wrapper.c
+1
-1
net/netfilter/xt_limit.c
net/netfilter/xt_limit.c
+2
-2
No files found.
Documentation/i2c/i2c-protocol
View file @
db955170
...
@@ -68,7 +68,7 @@ We have found some I2C devices that needs the following modifications:
...
@@ -68,7 +68,7 @@ We have found some I2C devices that needs the following modifications:
Flags I2C_M_IGNORE_NAK
Flags I2C_M_IGNORE_NAK
Normally message is interrupted immediately if there is [NA] from the
Normally message is interrupted immediately if there is [NA] from the
client. Setting this flag treats any [NA] as
[A], and all of
client. Setting this flag treats any [NA] as
[A], and all of
message is sent.
message is sent.
These messages may still fail to SCL lo->hi timeout.
These messages may still fail to SCL lo->hi timeout.
...
...
arch/x86/kernel/cpu/cyrix.c
View file @
db955170
...
@@ -93,7 +93,7 @@ static void __cpuinit check_cx686_slop(struct cpuinfo_x86 *c)
...
@@ -93,7 +93,7 @@ static void __cpuinit check_cx686_slop(struct cpuinfo_x86 *c)
local_irq_save
(
flags
);
local_irq_save
(
flags
);
ccr3
=
getCx86
(
CX86_CCR3
);
ccr3
=
getCx86
(
CX86_CCR3
);
setCx86
(
CX86_CCR3
,
(
ccr3
&
0x0f
)
|
0x10
);
/* enable MAPEN
*/
setCx86
(
CX86_CCR3
,
(
ccr3
&
0x0f
)
|
0x10
);
/* enable MAPEN */
ccr5
=
getCx86
(
CX86_CCR5
);
ccr5
=
getCx86
(
CX86_CCR5
);
if
(
ccr5
&
2
)
if
(
ccr5
&
2
)
setCx86
(
CX86_CCR5
,
ccr5
&
0xfd
);
/* reset SLOP */
setCx86
(
CX86_CCR5
,
ccr5
&
0xfd
);
/* reset SLOP */
...
...
drivers/media/video/saa5246a.c
View file @
db955170
...
@@ -196,10 +196,10 @@ static int i2c_senddata(struct saa5246a_device *t, ...)
...
@@ -196,10 +196,10 @@ static int i2c_senddata(struct saa5246a_device *t, ...)
return
i2c_sendbuf
(
t
,
buf
[
0
],
ct
-
1
,
buf
+
1
);
return
i2c_sendbuf
(
t
,
buf
[
0
],
ct
-
1
,
buf
+
1
);
}
}
/* Get count number of bytes from IC-device at address adr, store them in buf.
/* Get count number of bytes from I
²
C-device at address adr, store them in buf.
* Start & stop handshaking is done by this routine, ack will be sent after the
* Start & stop handshaking is done by this routine, ack will be sent after the
* last byte to inhibit further sending of data. If uaccess is 'true', data is
* last byte to inhibit further sending of data. If uaccess is 'true', data is
* written to user-space with put_user. Returns -1 if IC-device didn't send
* written to user-space with put_user. Returns -1 if I
²
C-device didn't send
* acknowledge, 0 otherwise
* acknowledge, 0 otherwise
*/
*/
static
int
i2c_getdata
(
struct
saa5246a_device
*
t
,
int
count
,
u8
*
buf
)
static
int
i2c_getdata
(
struct
saa5246a_device
*
t
,
int
count
,
u8
*
buf
)
...
...
drivers/media/video/saa5249.c
View file @
db955170
...
@@ -291,10 +291,10 @@ static int i2c_senddata(struct saa5249_device *t, ...)
...
@@ -291,10 +291,10 @@ static int i2c_senddata(struct saa5249_device *t, ...)
return
i2c_sendbuf
(
t
,
buf
[
0
],
ct
-
1
,
buf
+
1
);
return
i2c_sendbuf
(
t
,
buf
[
0
],
ct
-
1
,
buf
+
1
);
}
}
/* Get count number of bytes from IC-device at address adr, store them in buf. Start & stop
/* Get count number of bytes from I
²
C-device at address adr, store them in buf. Start & stop
* handshaking is done by this routine, ack will be sent after the last byte to inhibit further
* handshaking is done by this routine, ack will be sent after the last byte to inhibit further
* sending of data. If uaccess is 'true', data is written to user-space with put_user.
* sending of data. If uaccess is 'true', data is written to user-space with put_user.
* Returns -1 if IC-device didn't send acknowledge, 0 otherwise
* Returns -1 if I
²
C-device didn't send acknowledge, 0 otherwise
*/
*/
static
int
i2c_getdata
(
struct
saa5249_device
*
t
,
int
count
,
u8
*
buf
)
static
int
i2c_getdata
(
struct
saa5249_device
*
t
,
int
count
,
u8
*
buf
)
...
...
drivers/misc/sony-laptop.c
View file @
db955170
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
*
*
* Copyright (C) 2005 Narayanan R S <nars@kadamba.org>
* Copyright (C) 2005 Narayanan R S <nars@kadamba.org>
*
*
* Copyright (C) 2001-2002 Alcve <www.alcove.com>
* Copyright (C) 2001-2002 Alc
ô
ve <www.alcove.com>
*
*
* Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
* Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
*
*
...
...
drivers/video/vermilion/vermilion.c
View file @
db955170
...
@@ -23,8 +23,8 @@
...
@@ -23,8 +23,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* Authors:
* Authors:
* Thomas Hellstrm <thomas-at-tungstengraphics-dot-com>
* Thomas Hellstr
ö
m <thomas-at-tungstengraphics-dot-com>
* Michel Dnzer <michel-at-tungstengraphics-dot-com>
* Michel D
ä
nzer <michel-at-tungstengraphics-dot-com>
* Alan Hourihane <alanh-at-tungstengraphics-dot-com>
* Alan Hourihane <alanh-at-tungstengraphics-dot-com>
*/
*/
...
...
drivers/video/vermilion/vermilion.h
View file @
db955170
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* Authors:
* Authors:
* Thomas Hellstr
m
<thomas-at-tungstengraphics-dot-com>
* Thomas Hellstr
öm
<thomas-at-tungstengraphics-dot-com>
*/
*/
#ifndef _VERMILION_H_
#ifndef _VERMILION_H_
...
...
net/irda/irlan/irlan_client_event.c
View file @
db955170
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* published by the Free Software Foundation; either version 2 of
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* the License, or (at your option) any later version.
*
*
* Neither Dag Brattli nor University of Troms
admit liability nor
* Neither Dag Brattli nor University of Troms
ø
admit liability nor
* provide warranty for any of this software. This material is
* provide warranty for any of this software. This material is
* provided "AS-IS" and at no charge.
* provided "AS-IS" and at no charge.
*
*
...
...
net/irda/irlan/irlan_filter.c
View file @
db955170
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
* published by the Free Software Foundation; either version 2 of
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* the License, or (at your option) any later version.
*
*
* Neither Dag Brattli nor University of Troms
admit liability nor
* Neither Dag Brattli nor University of Troms
ø
admit liability nor
* provide warranty for any of this software. This material is
* provide warranty for any of this software. This material is
* provided "AS-IS" and at no charge.
* provided "AS-IS" and at no charge.
*
*
...
...
net/irda/timer.c
View file @
db955170
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
* published by the Free Software Foundation; either version 2 of
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* the License, or (at your option) any later version.
*
*
* Neither Dag Brattli nor University of Troms
admit liability nor
* Neither Dag Brattli nor University of Troms
ø
admit liability nor
* provide warranty for any of this software. This material is
* provide warranty for any of this software. This material is
* provided "AS-IS" and at no charge.
* provided "AS-IS" and at no charge.
*
*
...
...
net/irda/wrapper.c
View file @
db955170
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
* published by the Free Software Foundation; either version 2 of
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* the License, or (at your option) any later version.
*
*
* Neither Dag Brattli nor University of Troms
admit liability nor
* Neither Dag Brattli nor University of Troms
ø
admit liability nor
* provide warranty for any of this software. This material is
* provide warranty for any of this software. This material is
* provided "AS-IS" and at no charge.
* provided "AS-IS" and at no charge.
*
*
...
...
net/netfilter/xt_limit.c
View file @
db955170
/* (C) 1999 J
r
me de Vivie <devivie@info.enserb.u-bordeaux.fr>
/* (C) 1999 J
érô
me de Vivie <devivie@info.enserb.u-bordeaux.fr>
* (C) 1999 Herv Eychenne <eychenne@info.enserb.u-bordeaux.fr>
* (C) 1999 Herv
é
Eychenne <eychenne@info.enserb.u-bordeaux.fr>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* it under the terms of the GNU General Public License version 2 as
...
...
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