l4misc.log
68.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
Module l4misc is in DEFALUT mode
Compiling ps\l4\l4a\src\l4a_callback.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"ps\l4\l4a\src\l4a_callback.c", line 6323: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6337: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6407: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6421: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6431: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6443: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6471: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6513: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6527: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6541: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6569: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6583: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6597: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6625: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6639: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6653: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6667: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6681: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6695: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6709: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6723: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6737: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6751: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6779: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6807: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6821: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6835: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6852: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6866: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6880: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6894: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6964: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6978: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 6992: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7020: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7034: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7076: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7135: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7149: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7191: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7289: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7317: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7443: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7471: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7513: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7569: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7670: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7698: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7782: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7796: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7810: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7869: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7942: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 7970: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm(src,dest,msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8012: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8054: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8068: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8082: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8110: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8155: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8169: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8211: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8256: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm(src,dest,msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8354: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8368: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8382: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8396: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8424: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8438: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8452: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8494: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8749: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8763: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8791: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8819: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8847: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8903: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8931: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8959: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 8973: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9001: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9015: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9029: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9043: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9057: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9071: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9085: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9113: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9127: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9155: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9172: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9186: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9200: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9214: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9228: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9242: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9256: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9270: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9284: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9298: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9326: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9354: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9368: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9382: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9410: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9480: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9508: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9536: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9550: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9578: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9623: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9651: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9665: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9679: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9693: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9707: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9721: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9735: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9749: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9763: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9777: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9791: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9861: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9875: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9917: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9931: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9959: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 9987: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10029: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10043: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10071: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10085: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10099: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10113: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10127: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10155: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10169: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10183: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10197: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10211: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10225: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10239: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10253: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10267: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10351: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10379: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10407: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10435: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10533: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10606: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10690: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10718: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10774: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10847: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10875: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10903: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10931: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10959: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 10987: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11071: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11085: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11113: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11155: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11169: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11197: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11239: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11267: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11281: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11365: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11393: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11407: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11421: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11761: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11803: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11819: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11847: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11918: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11960: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 11988: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12016: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12086: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12099: Warning: #1256-D: "kal_int8" would have been promoted to "int" when passed through the ellipsis parameter; use the latter type instead
assignS(0,kal_int8)
^
"ps\l4\l4a\src\l4a_callback.c", line 12100: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12128: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12156: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12274: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_WAP(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12288: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_WAP(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12302: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_WAP(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12316: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_WAP(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12358: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12372: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12386: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12414: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12428: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12456: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12472: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12486: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12596: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12796: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12824: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12866: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12880: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 12964: Warning: #188-D: enumerated type mixed with another type
l4a_sendmsg_ilm_to_MMI(msg,p);
^
"ps\l4\l4a\src\l4a_callback.c", line 13756: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 13767: Warning: #188-D: enumerated type mixed with another type
l4a_cc_exe_ath_req(SRC_ID , p->a0 , p->a1 );
^
"ps\l4\l4a\src\l4a_callback.c", line 13798: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 13852: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 13939: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 13951: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 13963: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 13975: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 13987: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 13999: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14011: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14023: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14035: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14248: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14278: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14290: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14302: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14314: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14326: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14338: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14422: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14509: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14671: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14836: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14848: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14860: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 14890: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14959: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 14971: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15055: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15067: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15097: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15108: Warning: #188-D: enumerated type mixed with another type
kal_bool result = (kal_bool)l4c_nw_set_gprs_connect_type_req(SRC_ID , p->a0 );
^
"ps\l4\l4a\src\l4a_callback.c", line 15145: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15157: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15169: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15198: Warning: #188-D: enumerated type mixed with another type
kal_bool result = (kal_bool)l4c_nw_set_rat_mode_ext_req(SRC_ID , p->a0 , p->a1 );
^
"ps\l4\l4a\src\l4a_callback.c", line 15199: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15229: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15340: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15370: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15382: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15442: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15454: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15466: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 15478: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15532: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15562: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15574: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15649: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15661: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 15673: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 16018: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16048: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16078: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16090: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16102: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16113: Warning: #188-D: enumerated type mixed with another type
kal_bool result = (kal_bool)l4a_sms_exe_post_msg_req(SRC_ID , p->a0 , p->a1 , p->a2 , p->a3 , p->a4 , p->a5 , p->a6 , p->a7 , p->a8 , p->a9 , p->a10 , p->a11 , p->a12 , p->a13 , p->a14 , p->a15 );
^
"ps\l4\l4a\src\l4a_callback.c", line 16113: Warning: #188-D: enumerated type mixed with another type
kal_bool result = (kal_bool)l4a_sms_exe_post_msg_req(SRC_ID , p->a0 , p->a1 , p->a2 , p->a3 , p->a4 , p->a5 , p->a6 , p->a7 , p->a8 , p->a9 , p->a10 , p->a11 , p->a12 , p->a13 , p->a14 , p->a15 );
^
"ps\l4\l4a\src\l4a_callback.c", line 16114: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16126: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16138: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16222: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16234: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16246: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16378: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16390: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16402: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16414: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16462: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16486: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16642: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16657: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16669: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16681: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16693: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16723: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16735: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16813: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16825: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16849: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 16861: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 16873: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 16885: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 16897: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 17104: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_RESULT_STRUCT
^
"ps\l4\l4a\src\l4a_callback.c", line 17741: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 17812: Warning: #14-D: extra text after expected end of preprocessing directive
#ifndef _CALL_FUNC_MSG_ID_MMI_EM_GET_ESSP_REQ _
^
"ps\l4\l4a\src\l4a_callback.c", line 17890: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 18306: Warning: #188-D: enumerated type mixed with another type
kal_bool result = (kal_bool)l4c_set_sim_capability_req(SRC_ID , p->a0 , p->a1 );
^
"ps\l4\l4a\src\l4a_callback.c", line 18307: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 18593: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 18605: Warning: #188-D: enumerated type mixed with another type
IF_CALL_FAIL_RETURN_BOOL
^
"ps\l4\l4a\src\l4a_callback.c", line 19732: Warning: #188-D: enumerated type mixed with another type
static l4c_gprs_status_enum last_status[2] = {0xFF, 0xFF}; //rx_level
^
"ps\l4\l4a\src\l4a_callback.c", line 19732: Warning: #188-D: enumerated type mixed with another type
static l4c_gprs_status_enum last_status[2] = {0xFF, 0xFF}; //rx_level
^
"ps\l4\l4a\src\l4a_callback.c", line 21283: Warning: #550-D: variable "MEMORY_END" was set but never used
kal_uint8 *MEMORY_END;
^
ps\l4\l4a\src\l4a_callback.c: 300 warnings, 0 errors
Compiling ps\l4\l4a\src\l4a_cmd.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\l4a\src\l4a_cmd.c: 1 warning, 0 errors
Compiling ps\l4\l4a\src\l4a_main.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\l4a\src\l4a_main.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_common.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_common.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_config.c ...
Compiling ps\l4\phb\src\phb_context.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_context.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_control_block.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_control_block.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_data_desc.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_data_desc.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_data_entry_table.c ...
Compiling ps\l4\phb\src\phb_handler_approve.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_handler_approve.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_handler_delete.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_handler_delete.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_handler_delete_ln.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_delete_ln.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_handler_read.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_read.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_handler_read_ln.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_read_ln.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_handler_sat.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_handler_sat.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_handler_search.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_search.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_handler_startup.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_handler_startup.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_handler_startup_ln.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_startup_ln.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_handler_write.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_write.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_handler_write_ln.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_handler_write_ln.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_ilm.c ...
Compiling ps\l4\phb\src\phb_main.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_main.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_name_num_index.c ...
Compiling ps\l4\phb\src\phb_nvram_access.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_nvram_access.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_pindex.c ...
Compiling ps\l4\phb\src\phb_sap.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_sap.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_se.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
ps\l4\phb\src\phb_se.c: 4 warnings, 0 errors
Compiling ps\l4\phb\src\phb_sim_access.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_sim_access.c: 1 warning, 0 errors
Compiling ps\l4\phb\src\phb_utils.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\phb\src\phb_utils.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_at_cmd.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_at_cmd.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_gpio_ctrl.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_gpio_ctrl.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_main.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_main.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_msg_hdlr.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_msg_hdlr.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_proc_cmd.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_proc_cmd.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_proc_msg.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_proc_msg.c: 1 warning, 0 errors
Compiling ps\l4\uem\src\uem_utility.c ...
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
ps\l4\uem\src\uem_utility.c: 1 warning, 0 errors
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "SMG_REL_97 SETL {TRUE}" -pd "__MOD_UEM__ SETL {TRUE}" -pd "UART_ENABLE SETL {TRUE}" -pd "__MOD_NVRAM__ SETL {TRUE}" -pd "__MOD_ATCI__ SETL {TRUE}" -pd "__MOD_L4C__ SETL {TRUE}" -pd "__SMS_PDU_MODE__ SETL {TRUE}" -pd "__SMS_ME_STORAGE__ SETL {TRUE}" -pd "MP3_SUPPORT SETL {TRUE}" -pd "__EMS__ SETL {TRUE}" -pd "SMS_SHOW_REPORT_IN_SIM SETL {TRUE}" -pd "__UEM_DRV_KPDQUEUE__ SETL {TRUE}" -pd "__CB_MMI_MASK__ SETL {TRUE}" -pd "EMS_LITTLE_ENDIAN SETL {TRUE}" -pd "EMS_MEM_MANAGEMENT SETL {TRUE}" -pd "SAVE_MSG_TO_SAME_STORAGE SETL {TRUE}" -pd "DATA_DOWNLOAD SETL {TRUE}" -pd "__PHB_USIM_MULTI_ADN__ SETL {TRUE}" -pd "__MOD_PHB__ SETL {TRUE}" -pd "__MOD_SMU__ SETL {TRUE}" -pd "__MOD_SMSAL__ SETL {TRUE}" -pd "__MOD_CSM__ SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/l4misc.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\l4misc\l4misc_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/l4misc.lib is updated
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\l4a_callback.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\l4a_cmd.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\l4a_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_common.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_config.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_context.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_control_block.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_data_desc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_data_entry_table.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_approve.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_delete.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_delete_ln.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_read.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_read_ln.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_sat.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_search.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_startup.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_startup_ln.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_write.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_handler_write_ln.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_ilm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_name_num_index.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_nvram_access.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_pindex.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_sap.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_se.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_sim_access.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\phb_utils.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_at_cmd.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_gpio_ctrl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_msg_hdlr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_proc_cmd.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_proc_msg.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\l4misc_dep\uem_utility.det
Processing l4a_callback.det l4a_cmd.det l4a_main.det phb_common.det phb_config.det phb_context.det phb_control_block.det phb_data_desc.det phb_data_entry_table.det phb_handler_approve.det phb_handler_delete.det phb_handler_delete_ln.det phb_handler_read.det phb_handler_read_ln.det phb_handler_sat.det phb_handler_search.det phb_handler_startup.det phb_handler_startup_ln.det phb_handler_write.det phb_handler_write_ln.det phb_ilm.det phb_main.det phb_name_num_index.det phb_nvram_access.det phb_pindex.det phb_sap.det phb_se.det phb_sim_access.det phb_utils.det uem_at_cmd.det uem_gpio_ctrl.det uem_main.det uem_msg_hdlr.det uem_proc_cmd.det uem_proc_msg.det uem_utility.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'