|
From: <bal...@us...> - 2007-02-27 10:43:06
|
Revision: 880
http://svn.sourceforge.net/hackndev/?rev=880&view=rev
Author: balrog-kun
Date: 2007-02-27 02:43:04 -0800 (Tue, 27 Feb 2007)
Log Message:
-----------
TT3: section mismatch fix and a new Kconfig dependency.
Modified Paths:
--------------
linux4palm/linux/trunk/drivers/i2c/chips/tps65010.c
linux4palm/linux/trunk/drivers/mmc/Kconfig
linux4palm/linux/trunk/drivers/soc/tsc2101.c
Modified: linux4palm/linux/trunk/drivers/i2c/chips/tps65010.c
===================================================================
--- linux4palm/linux/trunk/drivers/i2c/chips/tps65010.c 2007-02-27 03:20:00 UTC (rev 879)
+++ linux4palm/linux/trunk/drivers/i2c/chips/tps65010.c 2007-02-27 10:43:04 UTC (rev 880)
@@ -471,7 +471,7 @@
static struct tps65010 *the_tps;
-static int __exit tps65010_detach_client(struct i2c_client *client)
+static int tps65010_detach_client(struct i2c_client *client)
{
struct tps65010 *tps;
@@ -510,8 +510,7 @@
}
/* no error returns, they'd just make bus scanning stop */
-static int __init
-tps65010_probe(struct i2c_adapter *bus, int address, int kind)
+static int tps65010_probe(struct i2c_adapter *bus, int address, int kind)
{
struct tps65010 *tps;
int status;
@@ -666,7 +665,7 @@
return 0;
}
-static int __init tps65010_scan_bus(struct i2c_adapter *bus)
+static int tps65010_scan_bus(struct i2c_adapter *bus)
{
if (!i2c_check_functionality(bus, I2C_FUNC_SMBUS_BYTE_DATA))
return -EINVAL;
Modified: linux4palm/linux/trunk/drivers/mmc/Kconfig
===================================================================
--- linux4palm/linux/trunk/drivers/mmc/Kconfig 2007-02-27 03:20:00 UTC (rev 879)
+++ linux4palm/linux/trunk/drivers/mmc/Kconfig 2007-02-27 10:43:04 UTC (rev 880)
@@ -157,9 +157,10 @@
config MMC_WBSD_PALMT3
tristate "Winbond W86488Y on Palm T|T3 Interface support"
depends on MMC
+ depends on TPS65010
select MMC_BLOCK
help
- This module let you use SD cards on Palm T|T3.
+ This module let you use SD cards on Palm T|T3.
endmenu
Modified: linux4palm/linux/trunk/drivers/soc/tsc2101.c
===================================================================
--- linux4palm/linux/trunk/drivers/soc/tsc2101.c 2007-02-27 03:20:00 UTC (rev 879)
+++ linux4palm/linux/trunk/drivers/soc/tsc2101.c 2007-02-27 10:43:04 UTC (rev 880)
@@ -22,6 +22,7 @@
#include <linux/slab.h>
#include <linux/soc/tsc2101.h>
#include <linux/platform_device.h>
+#include <linux/irq.h>
#include <sound/control.h>
#include <asm/arch/pxa-regs.h>
#include <asm/arch/irqs.h>
@@ -813,7 +814,7 @@
}
-static int __init tsc2101_probe(struct device *dev)
+static int tsc2101_probe(struct device *dev)
{
struct tsc2101_data *devdata;
struct tsc2101_ts_event ts_data;
@@ -855,7 +856,7 @@
}
-static int __exit tsc2101_remove(struct device *dev)
+static int tsc2101_remove(struct device *dev)
{
struct tsc2101_data *devdata = dev_get_drvdata(dev);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|