From cc3146824acbf585f487a803b4a2eadf36b9b47d Mon Sep 17 00:00:00 2001 From: mirko Date: Fri, 12 Dec 2008 00:02:36 +0000 Subject: add support for target 3c24xx (more known as Openmoko GTA02 "Freerunner") and merge it with the openmoko-target and the work Michael Buesch did git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13609 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...f1ad2c713d2345a872fdf44f5dd3702e1b-Mon-Se.patch | 77 ++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100755 target/linux/s3c24xx/patches/0198-From-000450f1ad2c713d2345a872fdf44f5dd3702e1b-Mon-Se.patch (limited to 'target/linux/s3c24xx/patches/0198-From-000450f1ad2c713d2345a872fdf44f5dd3702e1b-Mon-Se.patch') diff --git a/target/linux/s3c24xx/patches/0198-From-000450f1ad2c713d2345a872fdf44f5dd3702e1b-Mon-Se.patch b/target/linux/s3c24xx/patches/0198-From-000450f1ad2c713d2345a872fdf44f5dd3702e1b-Mon-Se.patch new file mode 100755 index 000000000..4f1650682 --- /dev/null +++ b/target/linux/s3c24xx/patches/0198-From-000450f1ad2c713d2345a872fdf44f5dd3702e1b-Mon-Se.patch @@ -0,0 +1,77 @@ +From 27c725b62c2bb683ff13ade991838f6aef880547 Mon Sep 17 00:00:00 2001 +From: Holger Freyther +Date: Fri, 25 Jul 2008 23:06:17 +0100 +Subject: [PATCH] From 000450f1ad2c713d2345a872fdf44f5dd3702e1b Mon Sep 17 00:00:00 2001 + Subject: [PATCH] [janitor] make checkpatch.pl happy + +--- + drivers/i2c/chips/pcf50606.c | 25 ++++++++++++++----------- + 1 files changed, 14 insertions(+), 11 deletions(-) + +diff --git a/drivers/i2c/chips/pcf50606.c b/drivers/i2c/chips/pcf50606.c +index 50f944f..4218917 100644 +--- a/drivers/i2c/chips/pcf50606.c ++++ b/drivers/i2c/chips/pcf50606.c +@@ -79,12 +79,12 @@ I2C_CLIENT_INSMOD_1(pcf50606); + #define PCF50606_B_CHG_PROT 4 /* Charger Protection */ + #define PCF50606_B_CHG_READY 5 /* Charging completed */ + +-#define PCF50606_F_CHG_FAST (1<flags |= PCF50606_F_CHG_PRESENT; + if (pcf->pdata->cb) + pcf->pdata->cb(&pcf->client.dev, +- PCF50606_FEAT_MBC, PMU_EVT_INSERT); ++ PCF50606_FEAT_MBC, ++ PMU_EVT_INSERT); + } + + pcf->coldplug_done = 1; +@@ -988,7 +989,8 @@ EXPORT_SYMBOL_GPL(pcf50606_charge_fast); + + static inline u_int16_t adc_to_rntc(struct pcf50606_data *pcf, u_int16_t adc) + { +- u_int32_t r_ntc = (adc * (u_int32_t)pcf->pdata->r_fix_batt) / (1023 - adc); ++ u_int32_t r_ntc = (adc * (u_int32_t)pcf->pdata->r_fix_batt) ++ / (1023 - adc); + + return r_ntc; + } +@@ -1290,8 +1292,9 @@ static int pcf50606_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) + struct pcf50606_time pcf_tm; + + mutex_lock(&pcf->lock); +- alrm->enabled = +- __reg_read(pcf, PCF50606_REG_INT1M) & PCF50606_INT1_ALARM ? 0 : 1; ++ alrm->enabled = ++ __reg_read(pcf, PCF50606_REG_INT1M) & PCF50606_INT1_ALARM ++ ? 0 : 1; + pcf_tm.sec = __reg_read(pcf, PCF50606_REG_RTCSCA); + pcf_tm.min = __reg_read(pcf, PCF50606_REG_RTCMNA); + pcf_tm.hour = __reg_read(pcf, PCF50606_REG_RTCHRA); +@@ -1665,7 +1668,7 @@ static int pcf50606_detect(struct i2c_adapter *adapter, int address, int kind) + return -ENOMEM; + + mutex_init(&data->lock); +- mutex_init(&data->working_lock); ++ mutex_init(&data->working_lock); + INIT_WORK(&data->work, pcf50606_work); + data->irq = irq; + data->working = 0; +-- +1.5.6.3 + -- cgit v1.2.3