Send commitlog mailing list submissions to
        commitlog@lists.openmoko.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r3963 - trunk/src/target/gsm/src/libgsmd
      ([EMAIL PROTECTED])
   2. r3964 - trunk/src/target/gsm/src/gsmd
      ([EMAIL PROTECTED])
   3. r3965 - in trunk/src/target/gsm: include/gsmd src/gsmd
      ([EMAIL PROTECTED])
   4. r3966 - branches/src/target/kernel/2.6.24.x/patches
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: erin_yueh
Date: 2008-01-26 19:37:36 +0100 (Sat, 26 Jan 2008)
New Revision: 3963

Modified:
   trunk/src/target/gsm/src/libgsmd/libgsmd.c
Log:
gsmd: remove handle packet msg type = 2 error (Erin Yueh)


Modified: trunk/src/target/gsm/src/libgsmd/libgsmd.c
===================================================================
--- trunk/src/target/gsm/src/libgsmd/libgsmd.c  2008-01-26 18:25:09 UTC (rev 
3962)
+++ trunk/src/target/gsm/src/libgsmd/libgsmd.c  2008-01-26 18:37:36 UTC (rev 
3963)
@@ -36,7 +36,7 @@
 
 #include "lgsm_internals.h"
 
-#if 0
+
 static int lgsm_get_packet(struct lgsm_handle *lh)
 {
        static char buf[GSMD_MSGSIZE_MAX];
@@ -58,8 +58,8 @@
 
        return 0;
 }
-#endif
 
+
 static int lgsm_open_backend(struct lgsm_handle *lh, const char *device)
 {
        int rc;




--- End Message ---
--- Begin Message ---
Author: erin_yueh
Date: 2008-01-26 19:38:56 +0100 (Sat, 26 Jan 2008)
New Revision: 3964

Modified:
   trunk/src/target/gsm/src/gsmd/gsmd.c
Log:
gsmd: disable COLP to avoid cme error 512 (Sean Chiang)


Modified: trunk/src/target/gsm/src/gsmd/gsmd.c
===================================================================
--- trunk/src/target/gsm/src/gsmd/gsmd.c        2008-01-26 18:37:36 UTC (rev 
3963)
+++ trunk/src/target/gsm/src/gsmd/gsmd.c        2008-01-26 18:38:56 UTC (rev 
3964)
@@ -182,7 +182,8 @@
        /* use +CLIP: to indicate CLIP */
        rc |= gsmd_simplecmd(gsmd, "AT+CLIP=1");
        /* use +COLP: to indicate COLP */
-       rc |= gsmd_simplecmd(gsmd, "AT+COLP=1");
+       /* set it 0 to disable subscriber info and avoid cme err 512 */
+       rc |= gsmd_simplecmd(gsmd, "AT+COLP=0");
        /* use +CCWA: to indicate waiting call */
        rc |= gsmd_simplecmd(gsmd, "AT+CCWA=1,1");
        /* configure message format as PDU mode*/




--- End Message ---
--- Begin Message ---
Author: erin_yueh
Date: 2008-01-26 19:40:25 +0100 (Sat, 26 Jan 2008)
New Revision: 3965

Modified:
   trunk/src/target/gsm/include/gsmd/usock.h
   trunk/src/target/gsm/src/gsmd/usock.c
Log:
gsmd: query network registration 2nd try (Erin Yueh)


Modified: trunk/src/target/gsm/include/gsmd/usock.h
===================================================================
--- trunk/src/target/gsm/include/gsmd/usock.h   2008-01-26 18:38:56 UTC (rev 
3964)
+++ trunk/src/target/gsm/include/gsmd/usock.h   2008-01-26 18:40:25 UTC (rev 
3965)
@@ -162,7 +162,7 @@
        GSMD_NETWORK_PREF_DEL   = 12,
        GSMD_NETWORK_PREF_ADD   = 13,
        GSMD_NETWORK_PREF_SPACE = 14,
-       GSMD_NETWORK_QUERY_REG = 15,
+       GSMD_NETWORK_QUERY_REG  = 15,
 };
 
 enum gsmd_msg_sms {

Modified: trunk/src/target/gsm/src/gsmd/usock.c
===================================================================
--- trunk/src/target/gsm/src/gsmd/usock.c       2008-01-26 18:38:56 UTC (rev 
3964)
+++ trunk/src/target/gsm/src/gsmd/usock.c       2008-01-26 18:40:25 UTC (rev 
3965)
@@ -674,7 +674,7 @@
 
        if (strncmp(resp, "+CREG: ", 7))
                return -EINVAL;
-       resp += 7;
+
        er = extrsp_parse(gsmd_tallocs, resp);
        if(!er)
                return -ENOMEM;




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-01-26 20:06:48 +0100 (Sat, 26 Jan 2008)
New Revision: 3966

Modified:
   branches/src/target/kernel/2.6.24.x/patches/s3c2410_touchscreen.patch
Log:
s3c2410_touchscreen.patch:
- include/asm/arch-s3c2410/ts.h, arch/arm/plat-s3c24xx/devs.c 
  (set_s3c2410ts_info): can't be _init and exported at the same time, so we 
  remove __init



Modified: branches/src/target/kernel/2.6.24.x/patches/s3c2410_touchscreen.patch
===================================================================
--- branches/src/target/kernel/2.6.24.x/patches/s3c2410_touchscreen.patch       
2008-01-26 18:40:25 UTC (rev 3965)
+++ branches/src/target/kernel/2.6.24.x/patches/s3c2410_touchscreen.patch       
2008-01-26 19:06:48 UTC (rev 3966)
@@ -1,7 +1,7 @@
-Index: linux-2.6/arch/arm/plat-s3c24xx/devs.c
+Index: linux-2.6.24/arch/arm/plat-s3c24xx/devs.c
 ===================================================================
---- linux-2.6.orig/arch/arm/plat-s3c24xx/devs.c
-+++ linux-2.6/arch/arm/plat-s3c24xx/devs.c
+--- linux-2.6.24.orig/arch/arm/plat-s3c24xx/devs.c
++++ linux-2.6.24/arch/arm/plat-s3c24xx/devs.c
 @@ -24,6 +24,7 @@
  #include <asm/mach/map.h>
  #include <asm/mach/irq.h>
@@ -24,7 +24,7 @@
 +
 +static struct s3c2410_ts_mach_info s3c2410ts_info;
 +
-+void __init set_s3c2410ts_info(struct s3c2410_ts_mach_info 
*hard_s3c2410ts_info)
++void set_s3c2410ts_info(struct s3c2410_ts_mach_info *hard_s3c2410ts_info)
 +{
 +      memcpy(&s3c2410ts_info,hard_s3c2410ts_info,sizeof(struct 
s3c2410_ts_mach_info));
 +      s3c_device_ts.dev.platform_data = &s3c2410ts_info;
@@ -34,10 +34,10 @@
  /* USB Device (Gadget)*/
  
  static struct resource s3c_usbgadget_resource[] = {
-Index: linux-2.6/include/asm-arm/plat-s3c24xx/devs.h
+Index: linux-2.6.24/include/asm-arm/plat-s3c24xx/devs.h
 ===================================================================
---- linux-2.6.orig/include/asm-arm/plat-s3c24xx/devs.h
-+++ linux-2.6/include/asm-arm/plat-s3c24xx/devs.h
+--- linux-2.6.24.orig/include/asm-arm/plat-s3c24xx/devs.h
++++ linux-2.6.24/include/asm-arm/plat-s3c24xx/devs.h
 @@ -42,6 +42,7 @@
  extern struct platform_device s3c_device_timer3;
  
@@ -46,10 +46,10 @@
  
  /* s3c2440 specific devices */
  
-Index: linux-2.6/arch/arm/mach-s3c2410/mach-h1940.c
+Index: linux-2.6.24/arch/arm/mach-s3c2410/mach-h1940.c
 ===================================================================
---- linux-2.6.orig/arch/arm/mach-s3c2410/mach-h1940.c
-+++ linux-2.6/arch/arm/mach-s3c2410/mach-h1940.c
+--- linux-2.6.24.orig/arch/arm/mach-s3c2410/mach-h1940.c
++++ linux-2.6.24/arch/arm/mach-s3c2410/mach-h1940.c
 @@ -38,6 +38,7 @@
  #include <asm/arch/h1940.h>
  #include <asm/arch/h1940-latch.h>
@@ -86,10 +86,10 @@
        s3c24xx_udc_set_platdata(&h1940_udc_cfg);
  
        /* Turn off suspend on both USB ports, and switch the
-Index: linux-2.6/drivers/input/touchscreen/Kconfig
+Index: linux-2.6.24/drivers/input/touchscreen/Kconfig
 ===================================================================
---- linux-2.6.orig/drivers/input/touchscreen/Kconfig
-+++ linux-2.6/drivers/input/touchscreen/Kconfig
+--- linux-2.6.24.orig/drivers/input/touchscreen/Kconfig
++++ linux-2.6.24/drivers/input/touchscreen/Kconfig
 @@ -67,6 +67,24 @@
          To compile this driver as a module, choose M here: the
          module will be called fujitsu-ts.
@@ -115,19 +115,19 @@
  config TOUCHSCREEN_GUNZE
        tristate "Gunze AHL-51S touchscreen"
        select SERIO
-Index: linux-2.6/drivers/input/touchscreen/Makefile
+Index: linux-2.6.24/drivers/input/touchscreen/Makefile
 ===================================================================
---- linux-2.6.orig/drivers/input/touchscreen/Makefile
-+++ linux-2.6/drivers/input/touchscreen/Makefile
+--- linux-2.6.24.orig/drivers/input/touchscreen/Makefile
++++ linux-2.6.24/drivers/input/touchscreen/Makefile
 @@ -19,3 +19,4 @@
  obj-$(CONFIG_TOUCHSCREEN_TOUCHRIGHT)  += touchright.o
  obj-$(CONFIG_TOUCHSCREEN_TOUCHWIN)    += touchwin.o
  obj-$(CONFIG_TOUCHSCREEN_UCB1400)     += ucb1400_ts.o
 +obj-$(CONFIG_TOUCHSCREEN_S3C2410)     += s3c2410_ts.o
-Index: linux-2.6/drivers/input/touchscreen/s3c2410_ts.c
+Index: linux-2.6.24/drivers/input/touchscreen/s3c2410_ts.c
 ===================================================================
 --- /dev/null
-+++ linux-2.6/drivers/input/touchscreen/s3c2410_ts.c
++++ linux-2.6.24/drivers/input/touchscreen/s3c2410_ts.c
 @@ -0,0 +1,437 @@
 +/*
 + * This program is free software; you can redistribute it and/or modify
@@ -566,10 +566,10 @@
 +        c-basic-offset: 8
 +    End:
 +*/
-Index: linux-2.6/include/asm-arm/arch-s3c2410/ts.h
+Index: linux-2.6.24/include/asm-arm/arch-s3c2410/ts.h
 ===================================================================
 --- /dev/null
-+++ linux-2.6/include/asm-arm/arch-s3c2410/ts.h
++++ linux-2.6.24/include/asm-arm/arch-s3c2410/ts.h
 @@ -0,0 +1,28 @@
 +/* linux/include/asm/arch-s3c2410/ts.h
 + *
@@ -595,14 +595,14 @@
 +       int             oversampling_shift;
 +};
 +
-+void __init set_s3c2410ts_info(struct s3c2410_ts_mach_info 
*hard_s3c2410ts_info);
++void set_s3c2410ts_info(struct s3c2410_ts_mach_info *hard_s3c2410ts_info);
 +
 +#endif /* __ASM_ARM_TS_H */
 +
-Index: linux-2.6/arch/arm/plat-s3c24xx/s3c244x.c
+Index: linux-2.6.24/arch/arm/plat-s3c24xx/s3c244x.c
 ===================================================================
---- linux-2.6.orig/arch/arm/plat-s3c24xx/s3c244x.c
-+++ linux-2.6/arch/arm/plat-s3c24xx/s3c244x.c
+--- linux-2.6.24.orig/arch/arm/plat-s3c24xx/s3c244x.c
++++ linux-2.6.24/arch/arm/plat-s3c24xx/s3c244x.c
 @@ -67,6 +67,7 @@
  
        s3c_device_i2c.name  = "s3c2440-i2c";




--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to