FreeCalypso > hg > fc-tourmaline
diff src/ui/bmi/mmiMmi.c @ 92:c0052fe355d3
src/ui/bmi/*.[ch]: rm trailing white space
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 08 Nov 2020 06:39:16 +0000 |
parents | 67bfe9f274f6 |
children | 7eee5ad6ae86 |
line wrap: on
line diff
--- a/src/ui/bmi/mmiMmi.c Sun Nov 08 05:12:05 2020 +0000 +++ b/src/ui/bmi/mmiMmi.c Sun Nov 08 06:39:16 2020 +0000 @@ -30,12 +30,12 @@ Apr 09, 2007 OMAPS00124879 x0039928(sumanth) Description : I sample crashes while reading the received SMS from the Agilent Solution : Heap memory is increased from 35k to 45k - + Oct 05, 2006 ER: OMAPS00094496 x0061088(Prachi) Description:Enhance RSSI to 3 parameters: Strength, quality, min-access-level Solution:To solve the ER OMAPS0094496,mmiInit() is now calling sAT_PercentCSQ() - - + + Jun 13 2005, REF:LOCOSTO-OTH-32113 - xpradipg Description: Bypass the powerkey initialization at bootup @@ -53,7 +53,7 @@ // mmiInit(). - 25/10/00 Original Condat(UK) BMI version. + 25/10/00 Original Condat(UK) BMI version. $End @@ -199,13 +199,13 @@ #define BOOTUP_WAIT_TIME 20 #define BOOTUP_SUCCESS_IND 1 -#define MFW_BOOTUP_IND 0x910 +#define MFW_BOOTUP_IND 0x910 static int iPrimitiveSlot = 0; /* ====================================================== */ /** -* Structure which holds the Status details +* Structure which holds the Status details **/ /* ====================================================== */ typedef struct @@ -242,7 +242,7 @@ /* JVJ #1874 - mmi_main doesnt start the MMI. It only initilizes the Keyboard handler*/ /* The keyboard handler will call mmiInit() when the Power Key is pressed */ // Jun 13 2005, REF:LOCOSTO-OTH-32113 - xpradipg -#if (BOARD == 61) +#if (BOARD == 61) /* BUG FIX - OMAPS00084167 */ /* For multimedia alone generate the primitive */ #ifdef ENABLE_KEY_ON_BOOTING @@ -260,10 +260,10 @@ #ifndef ENABLE_KEY_ON_BOOTING vsi_t_sleep(VSI_CALLER 50); - mmiInit(); + mmiInit(); #else - /* Begin - Bug fix - OMAPS00084167 */ - iPrimitiveSlot = aci_create (bootup_response_cb, NULL); + /* Begin - Bug fix - OMAPS00084167 */ + iPrimitiveSlot = aci_create (bootup_response_cb, NULL); bootup_indication->iStatus = BOOTUP_SUCCESS_IND; PSENDX (ACI, bootup_indication); @@ -288,33 +288,33 @@ * * @return BOOL - TRUE / FALSE * -* @see +* @see */ /* =========================================================== */ GLOBAL BOOL bootup_response_cb (ULONG opc, void * data) { T_MFW_BOOTUP_IND *bootup_indication; - + if (opc == MFW_BOOTUP_IND) { bootup_indication = (T_MFW_BOOTUP_IND *)data; - /* Status is 1 then bootup sequence has enabled */ + /* Status is 1 then bootup sequence has enabled */ if (bootup_indication->iStatus == BOOTUP_SUCCESS_IND) { - /* Contineous Pooling */ + /* Contineous Pooling */ while (dev_Mbox_isDspMboxReady() == FALSE) { vsi_t_sleep (VSI_CALLER BOOTUP_WAIT_TIME); /* Small Delay after each check */ - } + } aci_delete (iPrimitiveSlot); - + /* Once DSP initialization is done */ - mmiInit (); - + mmiInit (); + return TRUE; } - + } return FALSE; @@ -358,7 +358,7 @@ #ifndef NEW_EDITOR /* SPR#1428 - SH - New Editor changes */ edtInit(); /* init editor handler */ #endif /* NEW_EDITOR */ - + mnuInit(); /* init menu handler */ icnInit(); /* init icon handler */ //Oct 05, 2006 ER: OMAPS00094496 x0061088(Prachi)