Merge branch 'fix' of git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git into devel
This commit is contained in:
commit
fa12868e59
9 changed files with 23 additions and 7 deletions
|
@ -87,7 +87,7 @@ void clks_register(struct clk_lookup *clks, size_t num)
|
|||
clkdev_add(&clks[i]);
|
||||
}
|
||||
|
||||
int clk_add_alias(char *alias, struct device *alias_dev, char *id,
|
||||
int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
|
||||
struct device *dev)
|
||||
{
|
||||
struct clk *r = clk_get(dev, id);
|
||||
|
@ -96,7 +96,7 @@ int clk_add_alias(char *alias, struct device *alias_dev, char *id,
|
|||
if (!r)
|
||||
return -ENODEV;
|
||||
|
||||
l = clkdev_alloc(r, alias, alias_dev ? dev_name(alias_dev) : NULL);
|
||||
l = clkdev_alloc(r, alias, alias_dev_name);
|
||||
clk_put(r);
|
||||
if (!l)
|
||||
return -ENODEV;
|
||||
|
|
|
@ -69,6 +69,6 @@ extern void clk_pxa3xx_cken_disable(struct clk *);
|
|||
#endif
|
||||
|
||||
void clks_register(struct clk_lookup *clks, size_t num);
|
||||
int clk_add_alias(char *alias, struct device *alias_dev, char *id,
|
||||
int clk_add_alias(const char *alias, const char *alias_name, char *id,
|
||||
struct device *dev);
|
||||
|
||||
|
|
|
@ -187,7 +187,7 @@ static void __init e740_init(void)
|
|||
{
|
||||
pxa2xx_mfp_config(ARRAY_AND_SIZE(e740_pin_config));
|
||||
eseries_register_clks();
|
||||
clk_add_alias("CLK_CK48M", &e740_t7l66xb_device.dev,
|
||||
clk_add_alias("CLK_CK48M", e740_t7l66xb_device.name,
|
||||
"UDCCLK", &pxa25x_device_udc.dev),
|
||||
eseries_get_tmio_gpios();
|
||||
platform_add_devices(devices, ARRAY_SIZE(devices));
|
||||
|
|
|
@ -188,7 +188,7 @@ static struct platform_device *devices[] __initdata = {
|
|||
static void __init e750_init(void)
|
||||
{
|
||||
pxa2xx_mfp_config(ARRAY_AND_SIZE(e750_pin_config));
|
||||
clk_add_alias("CLK_CK3P6MI", &e750_tc6393xb_device.dev,
|
||||
clk_add_alias("CLK_CK3P6MI", e750_tc6393xb_device.name,
|
||||
"GPIO11_CLK", NULL),
|
||||
eseries_get_tmio_gpios();
|
||||
platform_add_devices(devices, ARRAY_SIZE(devices));
|
||||
|
|
|
@ -194,7 +194,7 @@ static struct platform_device *devices[] __initdata = {
|
|||
|
||||
static void __init e800_init(void)
|
||||
{
|
||||
clk_add_alias("CLK_CK3P6MI", &e800_tc6393xb_device.dev,
|
||||
clk_add_alias("CLK_CK3P6MI", e800_tc6393xb_device.name,
|
||||
"GPIO11_CLK", NULL),
|
||||
eseries_get_tmio_gpios();
|
||||
platform_add_devices(devices, ARRAY_SIZE(devices));
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
#endif
|
||||
|
||||
/* Chip Select */
|
||||
#define GPIO1_nCS2 MFP_CFG(GPIO1, AF1)
|
||||
#define GPIO2_nCS3 MFP_CFG(GPIO2, AF1)
|
||||
|
||||
/* AC97 */
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
#define GPIO17_2_GPIO MFP_CFG(GPIO17_2, AF0)
|
||||
|
||||
/* Chip Select */
|
||||
#define GPIO3_nCS2 MFP_CFG(GPIO3, AF1)
|
||||
#define GPIO4_nCS3 MFP_CFG(GPIO4, AF1)
|
||||
|
||||
/* AC97 */
|
||||
|
|
|
@ -919,7 +919,7 @@ static void __init tosa_init(void)
|
|||
pxa2xx_set_spi_info(2, &pxa_ssp_master_info);
|
||||
spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
|
||||
|
||||
clk_add_alias("CLK_CK3P6MI", &tc6393xb_device.dev, "GPIO11_CLK", NULL);
|
||||
clk_add_alias("CLK_CK3P6MI", tc6393xb_device.name, "GPIO11_CLK", NULL);
|
||||
|
||||
platform_add_devices(devices, ARRAY_SIZE(devices));
|
||||
}
|
||||
|
|
|
@ -882,10 +882,21 @@ static void __devinit init_pxafb_overlay(struct pxafb_info *fbi,
|
|||
init_completion(&ofb->branch_done);
|
||||
}
|
||||
|
||||
static inline int pxafb_overlay_supported(void)
|
||||
{
|
||||
if (cpu_is_pxa27x() || cpu_is_pxa3xx())
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __devinit pxafb_overlay_init(struct pxafb_info *fbi)
|
||||
{
|
||||
int i, ret;
|
||||
|
||||
if (!pxafb_overlay_supported())
|
||||
return 0;
|
||||
|
||||
for (i = 0; i < 2; i++) {
|
||||
init_pxafb_overlay(fbi, &fbi->overlay[i], i);
|
||||
ret = register_framebuffer(&fbi->overlay[i].fb);
|
||||
|
@ -908,6 +919,9 @@ static void __devexit pxafb_overlay_exit(struct pxafb_info *fbi)
|
|||
{
|
||||
int i;
|
||||
|
||||
if (!pxafb_overlay_supported())
|
||||
return;
|
||||
|
||||
for (i = 0; i < 2; i++)
|
||||
unregister_framebuffer(&fbi->overlay[i].fb);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue