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
1276
1277 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
5143 | void dump_bcn_qinfo_8188f(void *sel, struct bcn_qinfo_8188f *info, const char *tag)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_hal_init.c:5151:6: warning: no previous prototype for 'dump_mac_qinfo_8188f' [-Wmissing-prototypes]
5151 | void dump_mac_qinfo_8188f(void *sel, _adapter *adapter)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_hal_init.c:5212:6: warning: no previous prototype for 'rtl8188f_read_wmmedca_reg' [-Wmissing-prototypes]
5212 | void rtl8188f_read_wmmedca_reg(PADAPTER adapter, u16 *vo_params, u16 *vi_params, u16 *be_params, u16 *bk_params)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_hal_init.c:5390:6: warning: no previous prototype for 'hal_ra_info_dump' [-Wmissing-prototypes]
5390 | void hal_ra_info_dump(_adapter *padapter , void *sel)
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:817:1: warning: no previous prototype for 'phy_SpurCalibration_8188F' [-Wmissing-prototypes]
817 | phy_SpurCalibration_8188F(
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:987:1: warning: no previous prototype for 'phy_SetRegBW_8188F' [-Wmissing-prototypes]
987 | phy_SetRegBW_8188F(
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:1017:1: warning: no previous prototype for 'phy_GetSecondaryChnl_8188F' [-Wmissing-prototypes]
1017 | phy_GetSecondaryChnl_8188F(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:1053:1: warning: no previous prototype for 'phy_PostSetBwMode8188F' [-Wmissing-prototypes]
1053 | phy_PostSetBwMode8188F(
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:1132:1: warning: no previous prototype for 'phy_SwChnl8188F' [-Wmissing-prototypes]
1132 | phy_SwChnl8188F(
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:1158:1: warning: no previous prototype for 'phy_SwChnlAndSetBwMode8188F' [-Wmissing-prototypes]
1158 | phy_SwChnlAndSetBwMode8188F(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_phycfg.c:1200:1: warning: no previous prototype for 'PHY_HandleSwChnlAndSetBW8188F' [-Wmissing-prototypes]
1200 | PHY_HandleSwChnlAndSetBW8188F(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_rf6052.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_dm.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_rxdesc.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/rtl8188f_cmd.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/hal8188f_fw.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/rtl8189fs_led.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:372:6: warning: no previous prototype for '_InitDriverInfoSize' [-Wmissing-prototypes]
372 | void _InitDriverInfoSize(PADAPTER padapter, u8 drvInfoSize)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:377:6: warning: no previous prototype for '_InitNetworkType' [-Wmissing-prototypes]
377 | void _InitNetworkType(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:390:6: warning: no previous prototype for '_InitWMACSetting' [-Wmissing-prototypes]
390 | void _InitWMACSetting(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:429:6: warning: no previous prototype for '_InitAdaptiveCtrl' [-Wmissing-prototypes]
429 | void _InitAdaptiveCtrl(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:457:6: warning: no previous prototype for '_InitEDCA' [-Wmissing-prototypes]
457 | void _InitEDCA(PADAPTER padapter)
| ^~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:479:6: warning: no previous prototype for '_InitRetryFunction' [-Wmissing-prototypes]
479 | void _InitRetryFunction(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:508:6: warning: no previous prototype for 'sdio_AggSettingRxUpdate' [-Wmissing-prototypes]
508 | void sdio_AggSettingRxUpdate(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:528:6: warning: no previous prototype for '_initSdioAggregationSetting' [-Wmissing-prototypes]
528 | void _initSdioAggregationSetting(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:567:6: warning: no previous prototype for '_InitInterrupt' [-Wmissing-prototypes]
567 | void _InitInterrupt(PADAPTER padapter)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:580:6: warning: no previous prototype for '_InitRDGSetting' [-Wmissing-prototypes]
580 | void _InitRDGSetting(PADAPTER padapter)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:1356:4: warning: no previous prototype for 'SetHwReg8188FS' [-Wmissing-prototypes]
1356 | u8 SetHwReg8188FS(PADAPTER padapter, u8 variable, u8 *val)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:1412:6: warning: no previous prototype for 'GetHwReg8188FS' [-Wmissing-prototypes]
1412 | void GetHwReg8188FS(PADAPTER padapter, u8 variable, u8 *val)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:1439:1: warning: no previous prototype for 'GetHalDefVar8188FSDIO' [-Wmissing-prototypes]
1439 | GetHalDefVar8188FSDIO(
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_halinit.c:1473:1: warning: no previous prototype for 'SetHalDefVar8188FSDIO' [-Wmissing-prototypes]
1473 | SetHalDefVar8188FSDIO(
| ^~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/rtl8189fs_xmit.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/rtl8189fs_recv.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/rtl8189fs_xmit.c:520:5: warning: no previous prototype for 'rtl8188fs_xmit_handler' [-Wmissing-prototypes]
520 | s32 rtl8188fs_xmit_handler(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/efuse/rtl8188f/HalEfuseMask8188F_SDIO.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:163:4: warning: no previous prototype for 'sdio_read8' [-Wmissing-prototypes]
163 | u8 sdio_read8(struct intf_hdl *pintfhdl, u32 addr)
| ^~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:184:5: warning: no previous prototype for 'sdio_read16' [-Wmissing-prototypes]
184 | u16 sdio_read16(struct intf_hdl *pintfhdl, u32 addr)
| ^~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:207:5: warning: no previous prototype for 'sdio_read32' [-Wmissing-prototypes]
207 | u32 sdio_read32(struct intf_hdl *pintfhdl, u32 addr)
| ^~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:283:5: warning: no previous prototype for 'sdio_readN' [-Wmissing-prototypes]
283 | s32 sdio_readN(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pbuf)
| ^~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:344:5: warning: no previous prototype for 'sdio_write8' [-Wmissing-prototypes]
344 | s32 sdio_write8(struct intf_hdl *pintfhdl, u32 addr, u8 val)
| ^~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:366:5: warning: no previous prototype for 'sdio_write16' [-Wmissing-prototypes]
366 | s32 sdio_write16(struct intf_hdl *pintfhdl, u32 addr, u16 val)
| ^~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:388:5: warning: no previous prototype for 'sdio_write32' [-Wmissing-prototypes]
388 | s32 sdio_write32(struct intf_hdl *pintfhdl, u32 addr, u32 val)
| ^~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:465:5: warning: no previous prototype for 'sdio_writeN' [-Wmissing-prototypes]
465 | s32 sdio_writeN(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pbuf)
| ^~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:529:4: warning: no previous prototype for 'sdio_f0_read8' [-Wmissing-prototypes]
529 | u8 sdio_f0_read8(struct intf_hdl *pintfhdl, u32 addr)
| ^~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:540:6: warning: no previous prototype for 'sdio_read_mem' [-Wmissing-prototypes]
540 | void sdio_read_mem(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *rmem)
| ^~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:549:6: warning: no previous prototype for 'sdio_write_mem' [-Wmissing-prototypes]
549 | void sdio_write_mem(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *wmem)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:873:5: warning: no previous prototype for 'SdioLocalCmd52Read2Byte' [-Wmissing-prototypes]
873 | u16 SdioLocalCmd52Read2Byte(PADAPTER padapter, u32 addr)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:886:5: warning: no previous prototype for 'SdioLocalCmd52Read4Byte' [-Wmissing-prototypes]
886 | u32 SdioLocalCmd52Read4Byte(PADAPTER padapter, u32 addr)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:899:5: warning: no previous prototype for 'SdioLocalCmd53Read4Byte' [-Wmissing-prototypes]
899 | u32 SdioLocalCmd53Read4Byte(PADAPTER padapter, u32 addr)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:931:6: warning: no previous prototype for 'SdioLocalCmd52Write2Byte' [-Wmissing-prototypes]
931 | void SdioLocalCmd52Write2Byte(PADAPTER padapter, u32 addr, u16 v)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:940:6: warning: no previous prototype for 'SdioLocalCmd52Write4Byte' [-Wmissing-prototypes]
940 | void SdioLocalCmd52Write4Byte(PADAPTER padapter, u32 addr, u32 v)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:1116:6: warning: no previous prototype for 'ClearSysInterrupt8188FSdio' [-Wmissing-prototypes]
1116 | void ClearSysInterrupt8188FSdio(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:1232:6: warning: no previous prototype for 'UpdateInterruptMask8188FSdio' [-Wmissing-prototypes]
1232 | void UpdateInterruptMask8188FSdio(PADAPTER padapter, u32 AddMSR, u32 RemoveMSR)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/rtl8188f/sdio/sdio_ops.c:1507:6: warning: no previous prototype for 'sd_recv' [-Wmissing-prototypes]
1507 | void sd_recv(PADAPTER padapter)
| ^~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_antdiv.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:104:6: warning: no previous prototype for 'phydm_bb_dbg_port_clock_en' [-Wmissing-prototypes]
104 | void phydm_bb_dbg_port_clock_en(void *dm_void, u8 enable)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:189:6: warning: no previous prototype for 'phydm_bb_hw_dbg_info_n' [-Wmissing-prototypes]
189 | void phydm_bb_hw_dbg_info_n(void *dm_void, u32 *_used, char *output,
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:945:6: warning: no previous prototype for 'phydm_bb_hw_dbg_info' [-Wmissing-prototypes]
945 | void phydm_bb_hw_dbg_info(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:1750:5: warning: no previous prototype for 'phydm_rx_utility' [-Wmissing-prototypes]
1750 | u16 phydm_rx_utility(void *dm_void, u16 avg_phy_rate, u8 rx_max_ss,
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:1847:6: warning: no previous prototype for 'phydm_print_hist_2_buf' [-Wmissing-prototypes]
1847 | void phydm_print_hist_2_buf(void *dm_void, u16 *val, u16 len, char *buf,
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:1867:6: warning: no previous prototype for 'phydm_nss_hitogram' [-Wmissing-prototypes]
1867 | void phydm_nss_hitogram(void *dm_void, enum PDM_RATE_TYPE rate_type)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:1955:6: warning: no previous prototype for 'phydm_avg_phy_val_nss' [-Wmissing-prototypes]
1955 | void phydm_avg_phy_val_nss(void *dm_void, u8 nss)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:2165:6: warning: no previous prototype for 'phydm_basic_dbg_msg_linked' [-Wmissing-prototypes]
2165 | void phydm_basic_dbg_msg_linked(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:2830:6: warning: no previous prototype for 'phydm_get_per_path_txagc' [-Wmissing-prototypes]
2830 | void phydm_get_per_path_txagc(void *dm_void, u8 path, u32 *_used, char *output,
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:2904:6: warning: no previous prototype for 'phydm_get_txagc' [-Wmissing-prototypes]
2904 | void phydm_get_txagc(void *dm_void, u32 *_used, char *output, u32 *_out_len)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:2934:6: warning: no previous prototype for 'phydm_set_txagc' [-Wmissing-prototypes]
2934 | void phydm_set_txagc(void *dm_void, u32 *const val, u32 *_used,
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3014:6: warning: no previous prototype for 'phydm_shift_txagc' [-Wmissing-prototypes]
3014 | void phydm_shift_txagc(void *dm_void, u32 *const val, u32 *_used, char *output,
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3126:6: warning: no previous prototype for 'phydm_set_txagc_dbg' [-Wmissing-prototypes]
3126 | void phydm_set_txagc_dbg(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_set_txagc_dbg':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3137:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
3137 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3184:6: warning: no previous prototype for 'phydm_debug_trace' [-Wmissing-prototypes]
3184 | void phydm_debug_trace(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_debug_trace':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3196:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
3196 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3340:6: warning: no previous prototype for 'phydm_fw_debug_trace' [-Wmissing-prototypes]
3340 | void phydm_fw_debug_trace(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_fw_debug_trace':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3353:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
3353 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3399:6: warning: no previous prototype for 'phydm_dump_bb_reg_n' [-Wmissing-prototypes]
3399 | void phydm_dump_bb_reg_n(void *dm_void, u32 *_used, char *output, u32 *_out_len)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3602:6: warning: no previous prototype for 'phydm_dump_bb_reg' [-Wmissing-prototypes]
3602 | void phydm_dump_bb_reg(void *dm_void, u32 *_used, char *output, u32 *_out_len)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3640:6: warning: no previous prototype for 'phydm_dump_rf_reg' [-Wmissing-prototypes]
3640 | void phydm_dump_rf_reg(void *dm_void, u32 *_used, char *output, u32 *_out_len)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3704:6: warning: no previous prototype for 'phydm_dump_mac_reg' [-Wmissing-prototypes]
3704 | void phydm_dump_mac_reg(void *dm_void, u32 *_used, char *output, u32 *_out_len)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3729:6: warning: no previous prototype for 'phydm_dump_reg' [-Wmissing-prototypes]
3729 | void phydm_dump_reg(void *dm_void, char input[][16], u32 *_used, char *output,
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_dump_reg':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3739:13: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + 16' must not be NULL [-Waddress]
3739 | if (input[1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3777:6: warning: no previous prototype for 'phydm_enable_big_jump' [-Wmissing-prototypes]
3777 | void phydm_enable_big_jump(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3814:6: warning: no previous prototype for 'phydm_show_rx_rate' [-Wmissing-prototypes]
3814 | void phydm_show_rx_rate(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3902:6: warning: no previous prototype for 'phydm_per_tone_evm' [-Wmissing-prototypes]
3902 | void phydm_per_tone_evm(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_per_tone_evm':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:3921:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
3921 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4115:6: warning: no previous prototype for 'phydm_bw_ch_adjust' [-Wmissing-prototypes]
4115 | void phydm_bw_ch_adjust(void *dm_void, char input[][16],
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4167:6: warning: no previous prototype for 'phydm_ext_rf_element_ctrl' [-Wmissing-prototypes]
4167 | void phydm_ext_rf_element_ctrl(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_ext_rf_element_ctrl':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4175:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
4175 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4189:6: warning: no previous prototype for 'phydm_print_dbgport' [-Wmissing-prototypes]
4189 | void phydm_print_dbgport(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4237:6: warning: no previous prototype for 'phydm_get_anapar_table' [-Wmissing-prototypes]
4237 | void phydm_get_anapar_table(void *dm_void, u32 *_used, char *output,
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4260:6: warning: no previous prototype for 'phydm_dd_dbg_dump' [-Wmissing-prototypes]
4260 | void phydm_dd_dbg_dump(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4294:6: warning: no previous prototype for 'phydm_nss_hitogram_mp' [-Wmissing-prototypes]
4294 | void phydm_nss_hitogram_mp(void *dm_void, enum PDM_RATE_TYPE rate_type,
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4358:6: warning: no previous prototype for 'phydm_mp_dbg' [-Wmissing-prototypes]
4358 | void phydm_mp_dbg(void *dm_void, char input[][16], u32 *_used, char *output,
| ^~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c: In function 'phydm_cmd_parser':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_debug.c:4969:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + 16' must not be NULL [-Waddress]
4969 | if (input[1])
| ^~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_soml.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_smt_ant.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_antdect.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_interface.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_interface.c:752:4: warning: no previous prototype for 'phydm_trans_h2c_id' [-Wmissing-prototypes]
752 | u8 phydm_trans_h2c_id(struct dm_struct *dm, u8 phydm_h2c_id)
| ^~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_hwconfig.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:71:6: warning: no previous prototype for 'phydm_rx_statistic_cal' [-Wmissing-prototypes]
71 | void phydm_rx_statistic_cal(struct dm_struct *dm,
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:200:6: warning: no previous prototype for 'phydm_avg_phystatus_index' [-Wmissing-prototypes]
200 | void phydm_avg_phystatus_index(void *dm_void,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:349:6: warning: no previous prototype for 'phydm_avg_phystatus_init' [-Wmissing-prototypes]
349 | void phydm_avg_phystatus_init(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:363:4: warning: no previous prototype for 'phydm_get_signal_quality' [-Wmissing-prototypes]
363 | u8 phydm_get_signal_quality(struct phydm_phyinfo_struct *phy_info,
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:386:4: warning: no previous prototype for 'phydm_pwr_2_percent' [-Wmissing-prototypes]
386 | u8 phydm_pwr_2_percent(s8 ant_power)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:742:4: warning: no previous prototype for 'phydm_cck_rssi_convert' [-Wmissing-prototypes]
742 | s8 phydm_cck_rssi_convert(struct dm_struct *dm, u16 lna_idx, u8 vga_idx)
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:783:4: warning: no previous prototype for 'phydm_get_cck_rssi' [-Wmissing-prototypes]
783 | s8 phydm_get_cck_rssi(void *dm_void, u8 lna_idx, u8 vga_idx)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:894:6: warning: no previous prototype for 'phydm_phy_sts_n_parsing' [-Wmissing-prototypes]
894 | void phydm_phy_sts_n_parsing(struct dm_struct *dm,
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:1328:5: warning: no previous prototype for 'phydm_get_rssi_8814_ofdm' [-Wmissing-prototypes]
1328 | s32 phydm_get_rssi_8814_ofdm(struct dm_struct *dm, u8 *rssi_in)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_phystatus.c:1374:6: warning: no previous prototype for 'phydm_process_rssi_for_dm' [-Wmissing-prototypes]
1374 | void phydm_process_rssi_for_dm(struct dm_struct *dm,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:47:6: warning: no previous prototype for 'phydm_traffic_load_decision' [-Wmissing-prototypes]
47 | void phydm_traffic_load_decision(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:118:6: warning: no previous prototype for 'phydm_cck_new_agc_chk' [-Wmissing-prototypes]
118 | void phydm_cck_new_agc_chk(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:140:6: warning: no previous prototype for 'phydm_cck_lna_bit_num_chk' [-Wmissing-prototypes]
140 | void phydm_cck_lna_bit_num_chk(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:185:6: warning: no previous prototype for 'phydm_init_cck_setting' [-Wmissing-prototypes]
185 | void phydm_init_cck_setting(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:214:6: warning: no previous prototype for 'phydm_init_hw_info_by_rfe' [-Wmissing-prototypes]
214 | void phydm_init_hw_info_by_rfe(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:230:6: warning: no previous prototype for 'phydm_common_info_self_init' [-Wmissing-prototypes]
230 | void phydm_common_info_self_init(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:321:6: warning: no previous prototype for 'phydm_cmn_sta_info_update' [-Wmissing-prototypes]
321 | void phydm_cmn_sta_info_update(void *dm_void, u8 macid)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:349:6: warning: no previous prototype for 'phydm_common_info_self_update' [-Wmissing-prototypes]
349 | void phydm_common_info_self_update(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:455:6: warning: no previous prototype for 'phydm_common_info_self_reset' [-Wmissing-prototypes]
455 | void phydm_common_info_self_reset(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:498:6: warning: no previous prototype for 'phydm_phy_info_update' [-Wmissing-prototypes]
498 | void phydm_phy_info_update(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:506:6: warning: no previous prototype for 'phydm_hw_setting' [-Wmissing-prototypes]
506 | void phydm_hw_setting(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:807:5: warning: no previous prototype for 'phydm_supportability_init_ce' [-Wmissing-prototypes]
807 | u64 phydm_supportability_init_ce(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:1427:6: warning: no previous prototype for 'phydm_supportability_init' [-Wmissing-prototypes]
1427 | void phydm_supportability_init(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:1469:6: warning: no previous prototype for 'phydm_rfe_init' [-Wmissing-prototypes]
1469 | void phydm_rfe_init(void *dm_void)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c: In function 'phydm_supportability_en':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:1579:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
1579 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c: In function 'phydm_pause_func_console':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:1947:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
1947 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm.c:2003:4: warning: no previous prototype for 'phydm_stop_dm_watchdog_check' [-Wmissing-prototypes]
2003 | u8 phydm_stop_dm_watchdog_check(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:34:6: warning: no previous prototype for 'phydm_dig_recorder_reset' [-Wmissing-prototypes]
34 | void phydm_dig_recorder_reset(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:46:6: warning: no previous prototype for 'phydm_dig_recorder' [-Wmissing-prototypes]
46 | void phydm_dig_recorder(void *dm_void, boolean first_connect, u8 igi_curr,
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:98:6: warning: no previous prototype for 'phydm_dig_damping_chk' [-Wmissing-prototypes]
98 | void phydm_dig_damping_chk(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:199:1: warning: no previous prototype for 'phydm_dig_go_up_check' [-Wmissing-prototypes]
199 | phydm_dig_go_up_check(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:274:6: warning: no previous prototype for 'phydm_fa_threshold_check' [-Wmissing-prototypes]
274 | void phydm_fa_threshold_check(void *dm_void, boolean is_dfs_band)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:313:6: warning: no previous prototype for 'phydm_set_big_jump_step' [-Wmissing-prototypes]
313 | void phydm_set_big_jump_step(void *dm_void, u8 curr_igi)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:503:6: warning: no previous prototype for 'phydm_write_dig_reg_c50' [-Wmissing-prototypes]
503 | void phydm_write_dig_reg_c50(void *dm_void, u8 igi)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:603:4: warning: no previous prototype for 'phydm_get_igi_reg_val' [-Wmissing-prototypes]
603 | u8 phydm_get_igi_reg_val(void *dm_void, enum bb_path path)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:695:1: warning: no previous prototype for 'phydm_dig_abort' [-Wmissing-prototypes]
695 | phydm_dig_abort(void *dm_void)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:791:6: warning: no previous prototype for 'phydm_dig_abs_boundary_decision' [-Wmissing-prototypes]
791 | void phydm_dig_abs_boundary_decision(struct dm_struct *dm, boolean is_dfs_band)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:843:6: warning: no previous prototype for 'phydm_dig_dym_boundary_decision' [-Wmissing-prototypes]
843 | void phydm_dig_dym_boundary_decision(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:922:6: warning: no previous prototype for 'phydm_dig_abnormal_case' [-Wmissing-prototypes]
922 | void phydm_dig_abnormal_case(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:934:4: warning: no previous prototype for 'phydm_new_igi_by_fa' [-Wmissing-prototypes]
934 | u8 phydm_new_igi_by_fa(struct dm_struct *dm, u8 igi, u32 fa_cnt, u8 *step_size)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:953:4: warning: no previous prototype for 'phydm_get_new_igi' [-Wmissing-prototypes]
953 | u8 phydm_get_new_igi(struct dm_struct *dm, u8 igi, u32 fa_cnt,
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:1049:9: warning: no previous prototype for 'phydm_dig_dfs_mode_en' [-Wmissing-prototypes]
1049 | boolean phydm_dig_dfs_mode_en(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:1207:6: warning: no previous prototype for 'phydm_false_alarm_counter_reg_reset' [-Wmissing-prototypes]
1207 | void phydm_false_alarm_counter_reg_reset(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:1303:6: warning: no previous prototype for 'phydm_false_alarm_counter_reg_hold' [-Wmissing-prototypes]
1303 | void phydm_false_alarm_counter_reg_hold(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:1325:6: warning: no previous prototype for 'phydm_fa_cnt_statistics_n' [-Wmissing-prototypes]
1325 | void phydm_fa_cnt_statistics_n(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dig.c:1514:6: warning: no previous prototype for 'phydm_get_dbg_port_info' [-Wmissing-prototypes]
1514 | void phydm_get_dbg_port_info(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_pathdiv.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dynamictxpower.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:54:4: warning: no previous prototype for 'phydm_rate_2_rate_digit' [-Wmissing-prototypes]
54 | u8 phydm_rate_2_rate_digit(void *dm_void, u8 rate)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c: In function 'phydm_h2C_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:128:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
128 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:154:6: warning: no previous prototype for 'phydm_fw_fix_rate' [-Wmissing-prototypes]
154 | void phydm_fw_fix_rate(void *dm_void, u8 en, u8 macid, u8 bw, u8 rate)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c: In function 'phydm_ra_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:196:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
196 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:671:6: warning: no previous prototype for 'phydm_rate_adaptive_mask_init' [-Wmissing-prototypes]
671 | void phydm_rate_adaptive_mask_init(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:841:4: warning: no previous prototype for 'phydm_get_tx_stream_num' [-Wmissing-prototypes]
841 | u8 phydm_get_tx_stream_num(void *dm_void, enum rf_type type)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:860:5: warning: no previous prototype for 'phydm_get_bb_mod_ra_mask' [-Wmissing-prototypes]
860 | u64 phydm_get_bb_mod_ra_mask(void *dm_void, u8 sta_idx)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1034:4: warning: no previous prototype for 'phydm_get_rate_id' [-Wmissing-prototypes]
1034 | u8 phydm_get_rate_id(void *dm_void, u8 sta_idx)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1138:6: warning: no previous prototype for 'phydm_ra_h2c' [-Wmissing-prototypes]
1138 | void phydm_ra_h2c(void *dm_void, u8 sta_idx, u8 dis_ra, u8 dis_pt,
| ^~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1412:4: warning: no previous prototype for 'phydm_rftype2rateid_2g_n20' [-Wmissing-prototypes]
1412 | u8 phydm_rftype2rateid_2g_n20(void *dm_void, u8 rf_type)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1427:4: warning: no previous prototype for 'phydm_rftype2rateid_2g_n40' [-Wmissing-prototypes]
1427 | u8 phydm_rftype2rateid_2g_n40(void *dm_void, u8 rf_type)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1442:4: warning: no previous prototype for 'phydm_rftype2rateid_5g_n' [-Wmissing-prototypes]
1442 | u8 phydm_rftype2rateid_5g_n(void *dm_void, u8 rf_type)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1457:4: warning: no previous prototype for 'phydm_rftype2rateid_ac80' [-Wmissing-prototypes]
1457 | u8 phydm_rftype2rateid_ac80(void *dm_void, u8 rf_type)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1472:4: warning: no previous prototype for 'phydm_rftype2rateid_ac40' [-Wmissing-prototypes]
1472 | u8 phydm_rftype2rateid_ac40(void *dm_void, u8 rf_type)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1575:22: warning: no previous prototype for 'phydm_get_ofdm_qam_order' [-Wmissing-prototypes]
1575 | enum phydm_qam_order phydm_get_ofdm_qam_order(void *dm_void, u8 rate_idx)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1656:4: warning: no previous prototype for 'phydm_rate2ss' [-Wmissing-prototypes]
1656 | u8 phydm_rate2ss(void *dm_void, u8 rate_idx)
| ^~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1681:4: warning: no previous prototype for 'phydm_rate2plcp' [-Wmissing-prototypes]
1681 | u8 phydm_rate2plcp(void *dm_void, u8 rate_idx)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1725:6: warning: no previous prototype for 'phydm_ra_common_info_update' [-Wmissing-prototypes]
1725 | void phydm_ra_common_info_update(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1773:6: warning: no previous prototype for 'phydm_masked_rrsr_set_register' [-Wmissing-prototypes]
1773 | void phydm_masked_rrsr_set_register(void *dm_void, u32 rrsr_val)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rainfo.c:1785:6: warning: no previous prototype for 'phydm_rrsr_mask' [-Wmissing-prototypes]
1785 | void phydm_rrsr_mask(void *dm_void)
| ^~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cfotracking.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:131:6: warning: no previous prototype for 'phydm_dig_up_bound_lmt_en' [-Wmissing-prototypes]
131 | void phydm_dig_up_bound_lmt_en(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:160:6: warning: no previous prototype for 'phydm_check_adaptivity' [-Wmissing-prototypes]
160 | void phydm_check_adaptivity(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:180:6: warning: no previous prototype for 'phydm_set_edcca_threshold' [-Wmissing-prototypes]
180 | void phydm_set_edcca_threshold(void *dm_void, s8 H2L, s8 L2H)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:196:6: warning: no previous prototype for 'phydm_mac_edcca_state' [-Wmissing-prototypes]
196 | void phydm_mac_edcca_state(void *dm_void, enum phydm_mac_edcca_type state)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:214:6: warning: no previous prototype for 'phydm_search_pwdb_lower_bound' [-Wmissing-prototypes]
214 | void phydm_search_pwdb_lower_bound(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:292:1: warning: no previous prototype for 'phydm_re_search_condition' [-Wmissing-prototypes]
292 | phydm_re_search_condition(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:304:6: warning: no previous prototype for 'phydm_set_l2h_th_ini' [-Wmissing-prototypes]
304 | void phydm_set_l2h_th_ini(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:323:6: warning: no previous prototype for 'phydm_set_l2h_th_ini_carrier_sense' [-Wmissing-prototypes]
323 | void phydm_set_l2h_th_ini_carrier_sense(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:333:6: warning: no previous prototype for 'phydm_set_forgetting_factor' [-Wmissing-prototypes]
333 | void phydm_set_forgetting_factor(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:344:6: warning: no previous prototype for 'phydm_set_pwdb_mode' [-Wmissing-prototypes]
344 | void phydm_set_pwdb_mode(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c: In function 'phydm_adaptivity_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:372:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
372 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adaptivity.c:455:9: warning: no previous prototype for 'phydm_edcca_abort' [-Wmissing-prototypes]
455 | boolean phydm_edcca_abort(void *dm_void)
| ^~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_noisemonitor.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cfotracking.c:28:5: warning: no previous prototype for 'phydm_get_cfo_hz' [-Wmissing-prototypes]
28 | s32 phydm_get_cfo_hz(void *dm_void, u32 val, u8 bit_num, u8 frac_num)
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cfotracking.c:96:6: warning: no previous prototype for 'phydm_get_cfo_info_n' [-Wmissing-prototypes]
96 | void phydm_get_cfo_info_n(void *dm_void, struct phydm_cfo_rpt *cfo)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cfotracking.c:150:6: warning: no previous prototype for 'phydm_set_atc_status' [-Wmissing-prototypes]
150 | void phydm_set_atc_status(void *dm_void, boolean atc_status)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cfotracking.c:169:1: warning: no previous prototype for 'phydm_get_atc_status' [-Wmissing-prototypes]
169 | phydm_get_atc_status(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cfotracking.c:314:6: warning: no previous prototype for 'phydm_cfo_tracking_reset' [-Wmissing-prototypes]
314 | void phydm_cfo_tracking_reset(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_beamforming.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_noisemonitor.c:42:6: warning: no previous prototype for 'phydm_set_noise_data_sum' [-Wmissing-prototypes]
42 | void phydm_set_noise_data_sum(struct noise_level *noise_data, u8 max_rf_path)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_noisemonitor.c:55:5: warning: no previous prototype for 'odm_inband_noise_monitor_n' [-Wmissing-prototypes]
55 | s16 odm_inband_noise_monitor_n(struct dm_struct *dm, u8 is_pause_dig, u8 igi,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_direct_bf.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_dfs.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/txbf/halcomtxbf.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/txbf/haltxbfinterface.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/txbf/phydm_hal_txbf_api.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_adc_sampling.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/txbf/phydm_hal_txbf_api.c: In function 'phydm_bf_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/txbf/phydm_hal_txbf_api.c:579:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
579 | if (input[i + 1])
| ^~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_psd.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:29:6: warning: no previous prototype for 'phydm_ccx_hw_restart' [-Wmissing-prototypes]
29 | void phydm_ccx_hw_restart(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:331:6: warning: no previous prototype for 'phydm_nhm_racing_release' [-Wmissing-prototypes]
331 | void phydm_nhm_racing_release(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:351:4: warning: no previous prototype for 'phydm_nhm_racing_ctrl' [-Wmissing-prototypes]
351 | u8 phydm_nhm_racing_ctrl(void *dm_void, enum phydm_nhm_level nhm_lv)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:401:1: warning: no previous prototype for 'phydm_nhm_check_rdy' [-Wmissing-prototypes]
401 | phydm_nhm_check_rdy(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:490:6: warning: no previous prototype for 'phydm_nhm_get_utility' [-Wmissing-prototypes]
490 | void phydm_nhm_get_utility(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:508:1: warning: no previous prototype for 'phydm_nhm_get_result' [-Wmissing-prototypes]
508 | phydm_nhm_get_result(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:633:6: warning: no previous prototype for 'phydm_nhm_set_th_reg' [-Wmissing-prototypes]
633 | void phydm_nhm_set_th_reg(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:684:1: warning: no previous prototype for 'phydm_nhm_th_update_chk' [-Wmissing-prototypes]
684 | phydm_nhm_th_update_chk(void *dm_void, enum nhm_application nhm_app, u8 *nhm_th,
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:790:6: warning: no previous prototype for 'phydm_nhm_set' [-Wmissing-prototypes]
790 | void phydm_nhm_set(void *dm_void, enum nhm_option_txon_all include_tx,
| ^~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:881:4: warning: no previous prototype for 'phydm_nhm_mntr_set' [-Wmissing-prototypes]
881 | u8 phydm_nhm_mntr_set(void *dm_void, struct nhm_para_info *nhm_para)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1202:1: warning: no previous prototype for 'phydm_nhm_mntr_chk' [-Wmissing-prototypes]
1202 | phydm_nhm_mntr_chk(void *dm_void, u16 monitor_time /*unit ms*/)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c: In function 'phydm_nhm_dbg':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1402:29: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
1402 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1458:6: warning: no previous prototype for 'phydm_clm_racing_release' [-Wmissing-prototypes]
1458 | void phydm_clm_racing_release(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1471:4: warning: no previous prototype for 'phydm_clm_racing_ctrl' [-Wmissing-prototypes]
1471 | u8 phydm_clm_racing_ctrl(void *dm_void, enum phydm_clm_level clm_lv)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1710:6: warning: no previous prototype for 'phydm_clm_mntr_fw' [-Wmissing-prototypes]
1710 | void phydm_clm_mntr_fw(void *dm_void, u16 monitor_time /*unit ms*/)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1771:1: warning: no previous prototype for 'phydm_clm_mntr_chk' [-Wmissing-prototypes]
1771 | phydm_clm_mntr_chk(void *dm_void, u16 monitor_time /*unit ms*/)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1833:6: warning: no previous prototype for 'phydm_clm_init' [-Wmissing-prototypes]
1833 | void phydm_clm_init(void *dm_void)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c: In function 'phydm_clm_dbg':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_ccx.c:1860:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
1860 | if (input[i + 1])
| ^~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_primary_cca.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_psd.c: In function 'phydm_psd_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_psd.c:413:29: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
413 | if (input[i + 1])
| ^~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cck_pd.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rssi_monitor.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cck_pd.c:35:6: warning: no previous prototype for 'phydm_write_cck_pd_type1' [-Wmissing-prototypes]
35 | void phydm_write_cck_pd_type1(void *dm_void, u8 cca_th)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cck_pd.c:47:6: warning: no previous prototype for 'phydm_set_cckpd_lv_type1' [-Wmissing-prototypes]
47 | void phydm_set_cckpd_lv_type1(void *dm_void, enum cckpd_lv lv)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cck_pd.c:78:6: warning: no previous prototype for 'phydm_cckpd_type1' [-Wmissing-prototypes]
78 | void phydm_cckpd_type1(void *dm_void)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_cck_pd.c:956:1: warning: no previous prototype for 'phydm_stop_cck_pd_th' [-Wmissing-prototypes]
956 | phydm_stop_cck_pd_th(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_auto_dbg.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rssi_monitor.c:35:6: warning: no previous prototype for 'phydm_rssi_monitor_h2c' [-Wmissing-prototypes]
35 | void phydm_rssi_monitor_h2c(void *dm_void, u8 macid)
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_rssi_monitor.c:98:6: warning: no previous prototype for 'phydm_calculate_rssi_min_max' [-Wmissing-prototypes]
98 | void phydm_calculate_rssi_min_max(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_math_lib.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_auto_dbg.c:35:6: warning: no previous prototype for 'phydm_check_hang_reset' [-Wmissing-prototypes]
35 | void phydm_check_hang_reset(
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_auto_dbg.c:47:6: warning: no previous prototype for 'phydm_check_hang_init' [-Wmissing-prototypes]
47 | void phydm_check_hang_init(
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_auto_dbg.c:59:6: warning: no previous prototype for 'phydm_auto_check_hang_engine_n' [-Wmissing-prototypes]
59 | void phydm_auto_check_hang_engine_n(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_auto_dbg.c:305:6: warning: no previous prototype for 'phydm_bb_auto_check_hang_start_n' [-Wmissing-prototypes]
305 | void phydm_bb_auto_check_hang_start_n(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_auto_dbg.c:333:6: warning: no previous prototype for 'phydm_dbg_port_dump_n' [-Wmissing-prototypes]
333 | void phydm_dbg_port_dump_n(void *dm_void, u32 *_used, char *output,
| ^~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_pow_train.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:147:6: warning: no previous prototype for 'phydm_config_ofdm_tx_path' [-Wmissing-prototypes]
147 | void phydm_config_ofdm_tx_path(void *dm_void, u32 path)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:320:6: warning: no previous prototype for 'phydm_config_cck_tx_path' [-Wmissing-prototypes]
320 | void phydm_config_cck_tx_path(void *dm_void, enum bb_path path)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:334:6: warning: no previous prototype for 'phydm_config_trx_path_v2' [-Wmissing-prototypes]
334 | void phydm_config_trx_path_v2(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:397:6: warning: no previous prototype for 'phydm_config_trx_path_v1' [-Wmissing-prototypes]
397 | void phydm_config_trx_path_v1(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:767:6: warning: no previous prototype for 'phydm_csi_mask_enable' [-Wmissing-prototypes]
767 | void phydm_csi_mask_enable(void *dm_void, u32 enable)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:791:6: warning: no previous prototype for 'phydm_clean_all_csi_mask' [-Wmissing-prototypes]
791 | void phydm_clean_all_csi_mask(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:830:6: warning: no previous prototype for 'phydm_set_csi_mask' [-Wmissing-prototypes]
830 | void phydm_set_csi_mask(void *dm_void, u32 tone_idx_tmp, u8 tone_direction)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:889:6: warning: no previous prototype for 'phydm_set_nbi_reg' [-Wmissing-prototypes]
889 | void phydm_set_nbi_reg(void *dm_void, u32 tone_idx_tmp, u32 bw)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:984:4: warning: no previous prototype for 'phydm_find_fc' [-Wmissing-prototypes]
984 | u8 phydm_find_fc(void *dm_void, u32 channel, u32 bw, u32 second_ch, u32 *fc_in)
| ^~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:1059:4: warning: no previous prototype for 'phydm_find_intf_distance' [-Wmissing-prototypes]
1059 | u8 phydm_find_intf_distance(void *dm_void, u32 bw, u32 fc, u32 f_interference,
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c: In function 'phydm_nbi_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:1656:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
1656 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c: In function 'phydm_csi_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:1748:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
1748 | if (input[i + 1]) {
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_api.c:2454:4: warning: no previous prototype for 'config_phydm_read_txagc_n' [-Wmissing-prototypes]
2454 | u8 config_phydm_read_txagc_n(void *dm_void, enum rf_path path, u8 hw_rate)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_lna_sat.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_pmac_tx_setting.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/phydm_mp.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c: In function 'halrf_support_ability_debug':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c:855:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
855 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c: At top level:
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c:1022:6: warning: no previous prototype for 'halrf_supportability_init_mp' [-Wmissing-prototypes]
1022 | void halrf_supportability_init_mp(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c:1357:6: warning: no previous prototype for 'halrf_dack_trigger' [-Wmissing-prototypes]
1357 | void halrf_dack_trigger(void *dm_void)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c:1869:6: warning: no previous prototype for 'halrf_aac_check' [-Wmissing-prototypes]
1869 | void halrf_aac_check(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c:1891:6: warning: no previous prototype for 'halrf_x2k_check' [-Wmissing-prototypes]
1891 | void halrf_x2k_check(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf.c:2595:6: warning: no previous prototype for 'halrf_txgapk_trigger' [-Wmissing-prototypes]
2595 | void halrf_txgapk_trigger(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halphyrf_ce.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.c:34:6: warning: no previous prototype for 'halrf_basic_profile' [-Wmissing-prototypes]
34 | void halrf_basic_profile(void *dm_void, u32 *_used, char *output, u32 *_out_len)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.c:78:6: warning: no previous prototype for 'halrf_debug_trace' [-Wmissing-prototypes]
78 | void halrf_debug_trace(void *dm_void, char input[][16], u32 *_used,
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.c: In function 'halrf_debug_trace':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.c:90:21: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
90 | if (input[i + 1])
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.c: In function 'halrf_cmd_parser':
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_debug.c:227:29: warning: the comparison will always evaluate as 'true' for the pointer operand in 'input + ((sizetype)i + 1) * 16' must not be NULL [-Waddress]
227 | if (input[i + 1]) {
| ^~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_powertracking_ce.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halphyrf_ce.c:161:6: warning: no previous prototype for 'odm_get_tracking_table' [-Wmissing-prototypes]
161 | void odm_get_tracking_table(void *dm_void, u8 thermal_value, u8 delta)
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halphyrf_ce.c:361:6: warning: no previous prototype for 'odm_pwrtrk_method' [-Wmissing-prototypes]
361 | void odm_pwrtrk_method(void *dm_void)
| ^~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halphyrf_ce.c:1073:6: warning: no previous prototype for 'odm_iq_calibrate' [-Wmissing-prototypes]
1073 | void odm_iq_calibrate(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_powertracking.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_powertracking_ce.c:595:4: warning: no previous prototype for 'get_swing_index' [-Wmissing-prototypes]
595 | u8 get_swing_index(void *dm_void)
| ^~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_powertracking_ce.c:645:4: warning: no previous prototype for 'get_cck_swing_index' [-Wmissing-prototypes]
645 | u8 get_cck_swing_index(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:35:6: warning: no previous prototype for 'phydm_set_kfree_to_rf_8814a' [-Wmissing-prototypes]
35 | void phydm_set_kfree_to_rf_8814a(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:127:6: warning: no previous prototype for 'phydm_get_thermal_trim_offset_8821c' [-Wmissing-prototypes]
127 | void phydm_get_thermal_trim_offset_8821c(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:154:6: warning: no previous prototype for 'phydm_get_power_trim_offset_8821c' [-Wmissing-prototypes]
154 | void phydm_get_power_trim_offset_8821c(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:191:6: warning: no previous prototype for 'phydm_set_kfree_to_rf_8821c' [-Wmissing-prototypes]
191 | void phydm_set_kfree_to_rf_8821c(void *dm_void, u8 e_rf_path, boolean wlg_btg,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:226:6: warning: no previous prototype for 'phydm_clear_kfree_to_rf_8821c' [-Wmissing-prototypes]
226 | void phydm_clear_kfree_to_rf_8821c(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:255:6: warning: no previous prototype for 'phydm_get_thermal_trim_offset_8822b' [-Wmissing-prototypes]
255 | void phydm_get_thermal_trim_offset_8822b(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:282:6: warning: no previous prototype for 'phydm_get_power_trim_offset_8822b' [-Wmissing-prototypes]
282 | void phydm_get_power_trim_offset_8822b(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:349:6: warning: no previous prototype for 'phydm_set_pa_bias_to_rf_8822b' [-Wmissing-prototypes]
349 | void phydm_set_pa_bias_to_rf_8822b(void *dm_void, u8 e_rf_path, s8 tx_pa_bias)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:408:6: warning: no previous prototype for 'phydm_get_pa_bias_offset_8822b' [-Wmissing-prototypes]
408 | void phydm_get_pa_bias_offset_8822b(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:453:6: warning: no previous prototype for 'phydm_set_kfree_to_rf_8822b' [-Wmissing-prototypes]
453 | void phydm_set_kfree_to_rf_8822b(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:473:6: warning: no previous prototype for 'phydm_clear_kfree_to_rf_8822b' [-Wmissing-prototypes]
473 | void phydm_clear_kfree_to_rf_8822b(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:500:6: warning: no previous prototype for 'phydm_get_thermal_trim_offset_8710b' [-Wmissing-prototypes]
500 | void phydm_get_thermal_trim_offset_8710b(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:527:6: warning: no previous prototype for 'phydm_get_power_trim_offset_8710b' [-Wmissing-prototypes]
527 | void phydm_get_power_trim_offset_8710b(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:554:6: warning: no previous prototype for 'phydm_set_kfree_to_rf_8710b' [-Wmissing-prototypes]
554 | void phydm_set_kfree_to_rf_8710b(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:568:6: warning: no previous prototype for 'phydm_clear_kfree_to_rf_8710b' [-Wmissing-prototypes]
568 | void phydm_clear_kfree_to_rf_8710b(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:584:6: warning: no previous prototype for 'phydm_get_thermal_trim_offset_8192f' [-Wmissing-prototypes]
584 | void phydm_get_thermal_trim_offset_8192f(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:611:6: warning: no previous prototype for 'phydm_get_power_trim_offset_8192f' [-Wmissing-prototypes]
611 | void phydm_get_power_trim_offset_8192f(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:680:6: warning: no previous prototype for 'phydm_set_kfree_to_rf_8192f' [-Wmissing-prototypes]
680 | void phydm_set_kfree_to_rf_8192f(void *dm_void, u8 e_rf_path, u8 channel_idx,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:768:6: warning: no previous prototype for 'phydm_get_thermal_trim_offset_8198f' [-Wmissing-prototypes]
768 | void phydm_get_thermal_trim_offset_8198f(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:795:6: warning: no previous prototype for 'phydm_get_power_trim_offset_8198f' [-Wmissing-prototypes]
795 | void phydm_get_power_trim_offset_8198f(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:846:6: warning: no previous prototype for 'phydm_set_kfree_to_rf_8198f' [-Wmissing-prototypes]
846 | void phydm_set_kfree_to_rf_8198f(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:888:6: warning: no previous prototype for 'phydm_clear_kfree_to_rf_8198f' [-Wmissing-prototypes]
888 | void phydm_clear_kfree_to_rf_8198f(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:932:6: warning: no previous prototype for 'phydm_get_set_thermal_trim_offset_8822c' [-Wmissing-prototypes]
932 | void phydm_get_set_thermal_trim_offset_8822c(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:972:6: warning: no previous prototype for 'phydm_set_power_trim_offset_8822c' [-Wmissing-prototypes]
972 | void phydm_set_power_trim_offset_8822c(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:1032:6: warning: no previous prototype for 'phydm_get_power_trim_offset_8822c' [-Wmissing-prototypes]
1032 | void phydm_get_power_trim_offset_8822c(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:1133:6: warning: no previous prototype for 'phydm_get_set_pa_bias_offset_8822c' [-Wmissing-prototypes]
1133 | void phydm_get_set_pa_bias_offset_8822c(void *dm_void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:1188:6: warning: no previous prototype for 'phydm_do_new_kfree' [-Wmissing-prototypes]
1188 | void phydm_do_new_kfree(void *dm_void)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:1201:6: warning: no previous prototype for 'phydm_set_kfree_to_rf' [-Wmissing-prototypes]
1201 | void phydm_set_kfree_to_rf(void *dm_void, u8 e_rf_path, u8 data)
| ^~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_kfree.c:1319:6: warning: no previous prototype for 'phydm_do_kfree' [-Wmissing-prototypes]
1319 | void phydm_do_kfree(void *dm_void, u8 channel_to_sw)
| ^~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/rtl8188f/halhwimg8188f_bb.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:23:5: warning: no previous prototype for '_sqrt' [-Wmissing-prototypes]
23 | u64 _sqrt(u64 x)
| ^~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:44:5: warning: no previous prototype for 'halrf_get_psd_data' [-Wmissing-prototypes]
44 | u32 halrf_get_psd_data(
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:111:6: warning: no previous prototype for 'halrf_psd' [-Wmissing-prototypes]
111 | void halrf_psd(
| ^~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:217:6: warning: no previous prototype for 'backup_bb_register' [-Wmissing-prototypes]
217 | void backup_bb_register(struct dm_struct *dm, u32 *bb_backup, u32 *backup_bb_reg, u32 counter)
| ^~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:225:6: warning: no previous prototype for 'restore_bb_register' [-Wmissing-prototypes]
225 | void restore_bb_register(struct dm_struct *dm, u32 *bb_backup, u32 *backup_bb_reg, u32 counter)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:235:6: warning: no previous prototype for '_halrf_psd_iqk_init' [-Wmissing-prototypes]
235 | void _halrf_psd_iqk_init(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:265:5: warning: no previous prototype for 'halrf_get_iqk_psd_data' [-Wmissing-prototypes]
265 | u32 halrf_get_iqk_psd_data(
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/halrf_psd.c:341:6: warning: no previous prototype for 'halrf_iqk_psd' [-Wmissing-prototypes]
341 | void halrf_iqk_psd(
| ^~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/rtl8188f/halhwimg8188f_mac.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/rtl8188f/halhwimg8188f_rf.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/rtl8188f/phydm_regconfig8188f.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.o
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/rtl8188f/phydm_rtl8188f.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:63:6: warning: no previous prototype for 'set_iqk_matrix_8188f' [-Wmissing-prototypes]
63 | void set_iqk_matrix_8188f(struct dm_struct *dm, s8 OFDM_index, u8 rf_path,
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:644:6: warning: no previous prototype for 'get_delta_swing_table_8188f' [-Wmissing-prototypes]
644 | void get_delta_swing_table_8188f(void *dm_void, u8 **temperature_up_a,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:735:9: warning: no previous prototype for 'phy_path_a_iqk_8188f' [-Wmissing-prototypes]
735 | phy_path_a_iqk_8188f(
| ^~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:807:9: warning: no previous prototype for 'phy_path_a_rx_iqk_8188f' [-Wmissing-prototypes]
807 | phy_path_a_rx_iqk_8188f(
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1214:6: warning: no previous prototype for '_phy_path_a_fill_iqk_matrix8188f' [-Wmissing-prototypes]
1214 | void _phy_path_a_fill_iqk_matrix8188f(struct dm_struct *dm, boolean is_iqk_ok,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1371:6: warning: no previous prototype for '_phy_save_adda_registers8188f' [-Wmissing-prototypes]
1371 | void _phy_save_adda_registers8188f(struct dm_struct *dm, u32 *adda_reg,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1384:6: warning: no previous prototype for '_phy_save_mac_registers8188f' [-Wmissing-prototypes]
1384 | void _phy_save_mac_registers8188f(struct dm_struct *dm, u32 *mac_reg,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1394:6: warning: no previous prototype for '_phy_reload_adda_registers8188f' [-Wmissing-prototypes]
1394 | void _phy_reload_adda_registers8188f(struct dm_struct *dm, u32 *adda_reg,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1404:6: warning: no previous prototype for '_phy_reload_mac_registers8188f' [-Wmissing-prototypes]
1404 | void _phy_reload_mac_registers8188f(struct dm_struct *dm, u32 *mac_reg,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1414:6: warning: no previous prototype for '_phy_path_adda_on8188f' [-Wmissing-prototypes]
1414 | void _phy_path_adda_on8188f(struct dm_struct *dm, u32 *adda_reg,
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1432:6: warning: no previous prototype for '_phy_mac_setting_calibration8188f' [-Wmissing-prototypes]
1432 | void _phy_mac_setting_calibration8188f(struct dm_struct *dm, u32 *mac_reg,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1450:6: warning: no previous prototype for '_phy_path_a_stand_by8188f' [-Wmissing-prototypes]
1450 | void _phy_path_a_stand_by8188f(struct dm_struct *dm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1462:6: warning: no previous prototype for '_phy_pi_mode_switch8188f' [-Wmissing-prototypes]
1462 | void _phy_pi_mode_switch8188f(struct dm_struct *dm, boolean pi_mode)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1474:1: warning: no previous prototype for 'phy_simularity_compare_8188f' [-Wmissing-prototypes]
1474 | phy_simularity_compare_8188f(struct dm_struct *dm, s32 result[][8], u8 c1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1571:6: warning: no previous prototype for '_phy_iq_calibrate_8188f' [-Wmissing-prototypes]
1571 | void _phy_iq_calibrate_8188f(struct dm_struct *dm, s32 result[][8], u8 t,
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:1844:6: warning: no previous prototype for '_phy_lc_calibrate_8188f' [-Wmissing-prototypes]
1844 | void _phy_lc_calibrate_8188f(struct dm_struct *dm, boolean is2T)
| ^~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:2114:6: warning: no previous prototype for '_phy_set_rf_path_switch_8188f' [-Wmissing-prototypes]
2114 | void _phy_set_rf_path_switch_8188f(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/hal/phydm/halrf/rtl8188f/halrf_8188f.c:2202:5: warning: no previous prototype for 'phy_psd_log2base' [-Wmissing-prototypes]
2202 | u32 phy_psd_log2base(u32 val)
| ^~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/platform/platform_ops.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/platform/platform_ops.c:21:5: warning: no previous prototype for 'platform_wifi_power_on' [-Wmissing-prototypes]
21 | int platform_wifi_power_on(void)
| ^~~~~~~~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/platform/platform_ops.c:29:6: warning: no previous prototype for 'platform_wifi_power_off' [-Wmissing-prototypes]
29 | void platform_wifi_power_off(void)
| ^~~~~~~~~~~~~~~~~~~~~~~
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/core/rtw_mp.o
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/core/rtw_mp.c:303:6: warning: no previous prototype for 'mpt_InitHWConfig' [-Wmissing-prototypes]
303 | void mpt_InitHWConfig(PADAPTER Adapter)
| ^~~~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/core/rtw_mp.c:1165:6: warning: no previous prototype for 'SetTxAGCOffset' [-Wmissing-prototypes]
1165 | void SetTxAGCOffset(PADAPTER pAdapter, u32 ulTxAGCOffset)
| ^~~~~~~~~~~~~~
/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/core/rtw_mp.c:1689:6: warning: no previous prototype for 'fill_tx_desc_8188f' [-Wmissing-prototypes]
1689 | void fill_tx_desc_8188f(PADAPTER padapter)
| ^~~~~~~~~~~~~~~~~~
LD [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/8189fs.o
MODPOST /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/Module.symvers
CC [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/8189fs.mod.o
LD [M] /home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786/8189fs.ko
make[2]: Leaving directory '/home/pmos/build/src/linux-170464e5eb77c63c77ee7c81002a37ac033097ab/out'
make[1]: Leaving directory '/home/pmos/build/src/linux-170464e5eb77c63c77ee7c81002a37ac033097ab'
make: Leaving directory '/home/pmos/build/src/rtl8189ES_linux-5d523593f41c0b8d723c6aa86b217ee1d0965786'
>>> linux-postmarketos-imx-ereader: Entering fakeroot...
zImage found: zImage
make[1]: Entering directory '/home/pmos/build/src/linux-170464e5eb77c63c77ee7c81002a37ac033097ab/out'
SYMLINK /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/build
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/modules.order
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/modules.builtin
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/modules.builtin.modinfo
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/arch/arm/crypto/aes-arm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/arch/arm/crypto/sha256-arm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/arch/arm/crypto/sha512-arm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/arch/arm/crypto/chacha-neon.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/arch/arm/crypto/poly1305-arm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/mm/zsmalloc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/fat/msdos.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/nls/nls_iso8859-15.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/binfmt_misc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/configfs/configfs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/exfat/exfat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/isofs/isofs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/ntfs3/ntfs3.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/udf/udf.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-evk.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/btrfs/btrfs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-kobo-aura2.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-tolino-shine2hd.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/fs/f2fs/f2fs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-tolino-shine3.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-tolino-vision.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/xcbc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-tolino-vision5.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sl-warp.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/rmd160.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sll-evk.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/wp512.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sll-kobo-clarahd.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sll-kobo-clarahd-b.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/blake2b_generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sll-kobo-clara2e-a.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sll-kobo-clara2e-b.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/pcbc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6sll-kobo-librah2o.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/cts.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-14x14-evk.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-ccimx6ulsbcexpress.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/lrw.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-ccimx6ulsbcpro.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/des_generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-geam.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-isiot-emmc.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/deflate.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-isiot-nand.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-kontron-bl.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/crc32_generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-kontron-bl-43.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-liteboard.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/lz4.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-tqma6ul1-mba6ulx.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/xxhash_generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-tqma6ul2-mba6ulx.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-tqma6ul2l-mba6ulx.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/af_alg.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-opos6uldev.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-pico-dwarf.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/algif_hash.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-pico-hobbit.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-pico-pi.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/algif_skcipher.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-phytec-segin-ff-rdk-emmc.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-phytec-segin-ff-rdk-nand.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/ecc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-prti6g.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/essiv.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-tx6ul-0010.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-tx6ul-0011.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/curve25519-generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ul-tx6ul-mainboard.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-14x14-evk.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/ecdh_generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-aster.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/crypto/xor.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-emmc-aster.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/crypto/libchacha20poly1305.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-emmc-eval-v3.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/crypto/libcurve25519-generic.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-emmc-iris.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/crypto/libcurve25519.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-emmc-iris-v2.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/lzo/lzo_compress.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-eval-v3.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-iris.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/lz4/lz4_compress.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-iris-v2.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/zstd/zstd_compress.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-wifi-aster.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-wifi-eval-v3.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/crc-ccitt.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-wifi-iris.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-colibri-wifi-iris-v2.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/crc7.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-dhcom-drc02.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-dhcom-pdk2.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/crc8.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-dhcom-picoitx.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/zlib_deflate/zlib_deflate.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-dhcor-maveo-box.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-jozacp.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/lib/raid6/raid6_pq.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-kobo-nia.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-kobo-nia-c.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/irqchip/irq-imx-mu-msi.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-kontron-bl.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/gpio/gpio-bd71828.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-myir-mys-6ulx-eval.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-opos6uldev.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/pwm/pwm-ntxec.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-phytec-segin-ff-rdk-nand.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-phytec-segin-ff-rdk-emmc.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/video/backlight/lm3630a_bl.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-phytec-segin-lc-rdk-nand.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/dma/dmatest.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-phytec-tauri-emmc.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/regulator/tps6518x-regulator.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-phytec-tauri-nand.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-tarragon-master.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/regulator/sy7636-regulator.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-tarragon-micro.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/regulator/jd9930-regulator.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-tarragon-slave.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/gpu/drm/mxc-epdc/mxc_epdc_drm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-tarragon-slavext.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-tqma6ull2-mba6ulx.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/block/zram/zram.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ull-tqma6ull2l-mba6ulx.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/mfd/tps6518x.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ulz-14x14-evk.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/mfd/jd9930-core.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/boot/dtbs/imx6ulz-bsh-smm-m2.dtb
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/mfd/sy7636-core.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/phy/phylink.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/phy/ax88796b.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac/wcc/brcmfmac-wcc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/brcmfmac-cyw.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bca/brcmfmac-bca.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/marvell/mwifiex/mwifiex.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireless/marvell/mwifiex/mwifiex_sdio.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/asix.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/ax88179_178a.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/cdc_ether.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/net1080.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/cdc_subset.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/zaurus.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/usbnet.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/cdc_ncm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/usb/r8153_ecm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/ipvlan/ipvlan.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/dummy.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/wireguard/wireguard.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/macvlan.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/mii.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/tun.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/veth.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/net/vxlan/vxlan.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/misc/usbtest.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/misc/ehset.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_acm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_ss_lb.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/u_serial.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_serial.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_obex.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/u_ether.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_ncm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_ecm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_eem.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_ecm_subset.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_rndis.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_mass_storage.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_fs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_hid.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/function/usb_f_printer.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/g_zero.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/g_ether.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/gadgetfs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/g_ffs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/g_mass_storage.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/g_serial.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/legacy/g_ncm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/gadget/libcomposite.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/serial/usbserial.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/serial/ftdi_sio.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/serial/option.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/usb/serial/usb_wwan.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/input/serio/serport.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/input/touchscreen/edt-ft5x06.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/input/touchscreen/ektf2127.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/input/misc/uinput.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/rtc/rtc-bd70528.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/rtc/rtc-ntxec.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/rtc/rtc-rc5t619.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/i2c/algos/i2c-algo-pcf.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/i2c/algos/i2c-algo-pca.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/media/mc/mc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/media/v4l2-core/v4l2-dv-timings.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/media/v4l2-core/videodev.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/power/supply/rn5t618_power.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/hwmon/sy7636-hwmon.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/hwmon/jd9930-hwmon.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/hwmon/tps6518x-hwmon.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/md/dm-mod.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/md/dm-bufio.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/md/dm-bio-prison.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/md/dm-crypt.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/md/persistent-data/dm-persistent-data.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/md/dm-thin-pool.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/iio/adc/rn5t618-adc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/bluetooth/hci_uart.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/bluetooth/btusb.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/bluetooth/btintel.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/bluetooth/btbcm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/bluetooth/btrtl.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/bluetooth/btnxpuart.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/siox/siox-core.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/drivers/siox/siox-bus-gpio.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/802/p8022.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/802/psnap.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/802/stp.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/sched/cls_cgroup.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nf_conntrack.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nf_nat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nft_ct.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nft_nat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nft_masq.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nft_fib.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/nft_chain_nat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_mark.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_nat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_CHECKSUM.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_REDIRECT.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_MASQUERADE.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_TCPMSS.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_addrtype.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_comment.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_conntrack.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_ipvs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/xt_tcpmss.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/ipvs/ip_vs.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/netfilter/ipvs/ip_vs_rr.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv4/netfilter/nf_defrag_ipv4.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv4/netfilter/nft_fib_ipv4.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv4/netfilter/iptable_mangle.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv4/netfilter/iptable_nat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv4/udp_tunnel.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv6/netfilter/ip6table_nat.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv6/netfilter/nf_defrag_ipv6.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv6/netfilter/nft_fib_ipv6.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/ipv6/ip6_udp_tunnel.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/8021q/8021q.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/llc/llc.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/bridge/bridge.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/bridge/br_netfilter.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/bluetooth/bluetooth.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/bluetooth/rfcomm/rfcomm.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/bluetooth/bnep/bnep.ko
INSTALL /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8/kernel/net/bluetooth/hidp/hidp.ko
DEPMOD /home/pmos/build/pkg/linux-postmarketos-imx-ereader/lib/modules/6.8.8
make[1]: Leaving directory '/home/pmos/build/src/linux-170464e5eb77c63c77ee7c81002a37ac033097ab/out'
>>> linux-postmarketos-imx-ereader*: Running postcheck for linux-postmarketos-imx-ereader
>>> linux-postmarketos-imx-ereader*: Preparing package linux-postmarketos-imx-ereader...
>>> linux-postmarketos-imx-ereader*: Tracing dependencies...
>>> linux-postmarketos-imx-ereader*: Package size: 19.6 MB
>>> linux-postmarketos-imx-ereader*: Compressing data...
>>> linux-postmarketos-imx-ereader*: Create checksum...
>>> linux-postmarketos-imx-ereader*: Create linux-postmarketos-imx-ereader-6.8.8-r0.apk
>>> linux-postmarketos-imx-ereader: Build complete at Fri, 31 May 2024 23:04:39 +0000 elapsed time 0h 20m 50s
>>> linux-postmarketos-imx-ereader: Cleaning up srcdir
>>> linux-postmarketos-imx-ereader: Cleaning up pkgdir
>>> linux-postmarketos-imx-ereader: Uninstalling dependencies...
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/23) Purging .makedepends-linux-postmarketos-imx-ereader (20240531.224349)
(2/23) Purging bash (5.2.26-r0)
Executing bash-5.2.26-r0.pre-deinstall
(3/23) Purging bc (1.07.1-r4)
(4/23) Purging bison (3.8.2-r1)
(5/23) Purging devicepkg-dev (0.18.1-r0)
(6/23) Purging findutils (4.9.0-r5)
(7/23) Purging flex (2.6.4-r6)
(8/23) Purging m4 (1.4.19-r3)
(9/23) Purging gmp-dev (6.3.0-r1)
(10/23) Purging libgmpxx (6.3.0-r1)
(11/23) Purging lzop (1.04-r0)
(12/23) Purging mpc1-dev (1.3.1-r1)
(13/23) Purging mpfr-dev (4.2.1-r0)
(14/23) Purging openssl-dev (3.3.0-r2)
(15/23) Purging git-perl (2.45.1-r0)
(16/23) Purging perl-git (2.45.1-r0)
(17/23) Purging perl-error (0.17029-r2)
(18/23) Purging perl (5.38.2-r0)
(19/23) Purging libbz2 (1.0.8-r6)
(20/23) Purging lzo (2.10-r5)
(21/23) Purging readline (8.2.10-r0)
(22/23) Purging libncursesw (6.4_p20240420-r0)
(23/23) Purging ncurses-terminfo-base (6.4_p20240420-r0)
Executing busybox-1.36.1-r28.trigger
OK: 410 MiB in 76 packages
>>> linux-postmarketos-imx-ereader: Updating the pmos/armv7 repository index...
>>> linux-postmarketos-imx-ereader: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap/packages/armv7/APKINDEX.tar.gz.2617': Operation not permitted
(002259) [23:04:42] (native) uninstall build dependencies
(002259) [23:04:42] (native) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
ERROR: No such package: .makedepends-linux-postmarketos-imx-ereader
(002259) [23:04:42] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002259) [23:04:42] DONE!
|