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
b477dfba
Commit
b477dfba
authored
May 16, 2009
by
Russell King
Committed by
Russell King
May 16, 2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes-rc5' of
git://aeryn.fluff.org.uk/bjdooks/linux
parents
1406de8e
3ac19bb4
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
20 deletions
+19
-20
arch/arm/mach-s3c2410/mach-bast.c
arch/arm/mach-s3c2410/mach-bast.c
+1
-2
arch/arm/nwfpe/fpa11.h
arch/arm/nwfpe/fpa11.h
+4
-0
arch/arm/nwfpe/fpa11_cprt.c
arch/arm/nwfpe/fpa11_cprt.c
+0
-4
arch/arm/nwfpe/softfloat.h
arch/arm/nwfpe/softfloat.h
+2
-0
arch/arm/plat-s3c/clock.c
arch/arm/plat-s3c/clock.c
+0
-2
arch/arm/plat-s3c24xx/dma.c
arch/arm/plat-s3c24xx/dma.c
+1
-1
arch/arm/plat-s3c64xx/gpiolib.c
arch/arm/plat-s3c64xx/gpiolib.c
+1
-1
arch/arm/plat-s3c64xx/include/plat/gpio-bank-h.h
arch/arm/plat-s3c64xx/include/plat/gpio-bank-h.h
+10
-10
No files found.
arch/arm/mach-s3c2410/mach-bast.c
View file @
b477dfba
...
...
@@ -588,8 +588,6 @@ static void __init bast_map_io(void)
s3c_device_nand
.
dev
.
platform_data
=
&
bast_nand_info
;
s3c_i2c0_set_platdata
(
&
bast_i2c_info
);
s3c24xx_init_io
(
bast_iodesc
,
ARRAY_SIZE
(
bast_iodesc
));
s3c24xx_init_clocks
(
0
);
s3c24xx_init_uarts
(
bast_uartcfgs
,
ARRAY_SIZE
(
bast_uartcfgs
));
...
...
@@ -602,6 +600,7 @@ static void __init bast_init(void)
sysdev_class_register
(
&
bast_pm_sysclass
);
sysdev_register
(
&
bast_pm_sysdev
);
s3c_i2c0_set_platdata
(
&
bast_i2c_info
);
s3c24xx_fb_set_platdata
(
&
bast_fb_info
);
platform_add_devices
(
bast_devices
,
ARRAY_SIZE
(
bast_devices
));
...
...
arch/arm/nwfpe/fpa11.h
View file @
b477dfba
...
...
@@ -114,4 +114,8 @@ extern unsigned int SingleCPDO(struct roundingData *roundData,
extern
unsigned
int
DoubleCPDO
(
struct
roundingData
*
roundData
,
const
unsigned
int
opcode
,
FPREG
*
rFd
);
/* extneded_cpdo.c */
extern
unsigned
int
ExtendedCPDO
(
struct
roundingData
*
roundData
,
const
unsigned
int
opcode
,
FPREG
*
rFd
);
#endif
arch/arm/nwfpe/fpa11_cprt.c
View file @
b477dfba
...
...
@@ -27,10 +27,6 @@
#include "fpmodule.inl"
#include "softfloat.h"
#ifdef CONFIG_FPE_NWFPE_XP
extern
flag
floatx80_is_nan
(
floatx80
);
#endif
unsigned
int
PerformFLT
(
const
unsigned
int
opcode
);
unsigned
int
PerformFIX
(
const
unsigned
int
opcode
);
...
...
arch/arm/nwfpe/softfloat.h
View file @
b477dfba
...
...
@@ -226,6 +226,8 @@ char floatx80_le_quiet( floatx80, floatx80 );
char
floatx80_lt_quiet
(
floatx80
,
floatx80
);
char
floatx80_is_signaling_nan
(
floatx80
);
extern
flag
floatx80_is_nan
(
floatx80
);
#endif
static
inline
flag
extractFloat32Sign
(
float32
a
)
...
...
arch/arm/plat-s3c/clock.c
View file @
b477dfba
...
...
@@ -306,8 +306,6 @@ struct clk s3c24xx_uclk = {
int
s3c24xx_register_clock
(
struct
clk
*
clk
)
{
clk
->
owner
=
THIS_MODULE
;
if
(
clk
->
enable
==
NULL
)
clk
->
enable
=
clk_null_enable
;
...
...
arch/arm/plat-s3c24xx/dma.c
View file @
b477dfba
...
...
@@ -1235,7 +1235,7 @@ int s3c2410_dma_getposition(unsigned int channel, dma_addr_t *src, dma_addr_t *d
EXPORT_SYMBOL
(
s3c2410_dma_getposition
);
static
struct
s3c2410_dma_chan
*
to_dma_chan
(
struct
sys_device
*
dev
)
static
inline
struct
s3c2410_dma_chan
*
to_dma_chan
(
struct
sys_device
*
dev
)
{
return
container_of
(
dev
,
struct
s3c2410_dma_chan
,
dev
);
}
...
...
arch/arm/plat-s3c64xx/gpiolib.c
View file @
b477dfba
...
...
@@ -57,7 +57,7 @@
#if 1
#define gpio_dbg(x...) do { } while(0)
#else
#define gpio_dbg(x...) printk(KERN_DEBUG
##
x)
#define gpio_dbg(x...) printk(KERN_DEBUG x)
#endif
/* The s3c64xx_gpiolib_4bit routines are to control the gpio banks where
...
...
arch/arm/plat-s3c64xx/include/plat/gpio-bank-h.h
View file @
b477dfba
...
...
@@ -61,14 +61,14 @@
#define S3C64XX_GPH7_ADDR_CF1 (0x06 << 28)
#define S3C64XX_GPH7_EINT_G6_7 (0x07 << 28)
#define S3C64XX_GPH8_MMC1_DATA6 (0x02 << 32)
#define S3C64XX_GPH8_MMC2_DATA2 (0x03 << 32)
#define S3C64XX_GPH8_I2S_V40_LRCLK (0x05 << 32)
#define S3C64XX_GPH8_ADDR_CF2 (0x06 << 32)
#define S3C64XX_GPH8_EINT_G6_8 (0x07 << 32)
#define S3C64XX_GPH9_MMC1_DATA7 (0x02 << 36)
#define S3C64XX_GPH9_MMC2_DATA3 (0x03 << 36)
#define S3C64XX_GPH9_I2S_V40_DI (0x05 << 36)
#define S3C64XX_GPH9_EINT_G6_9 (0x07 << 36)
#define S3C64XX_GPH8_MMC1_DATA6 (0x02 << 0)
#define S3C64XX_GPH8_MMC2_DATA2 (0x03 << 0)
#define S3C64XX_GPH8_I2S_V40_LRCLK (0x05 << 0)
#define S3C64XX_GPH8_ADDR_CF2 (0x06 << 0)
#define S3C64XX_GPH8_EINT_G6_8 (0x07 << 0)
#define S3C64XX_GPH9_OUTPUT (0x01 << 4)
#define S3C64XX_GPH9_MMC1_DATA7 (0x02 << 4)
#define S3C64XX_GPH9_MMC2_DATA3 (0x03 << 4)
#define S3C64XX_GPH9_I2S_V40_DI (0x05 << 4)
#define S3C64XX_GPH9_EINT_G6_9 (0x07 << 4)
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