-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperiodic_table
2209 lines (2209 loc) · 131 KB
/
periodic_table
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
total 895888
drwxr-xr-x 2 root wheel 50176 Jun 15 02:20 .
drwx------ 5 root wheel 512 Jun 14 22:54 ..
-rw-r--r-- 1 root wheel 220072 Jun 13 20:19 Makefile
-rw-r--r-- 1 root wheel 17984 Jun 14 00:44 aapic.o
-rw-r--r-- 1 root wheel 49032 Jun 14 00:44 abl.o
-rw-r--r-- 1 root wheel 88808 Jun 14 00:43 ac97.o
-rw-r--r-- 1 root wheel 32888 Jun 14 00:43 acphy.o
-rw-r--r-- 1 root wheel 302160 Jun 14 00:44 acpi.o
-rw-r--r-- 1 root wheel 101560 Jun 14 00:44 acpi_machdep.o
-rw-r--r-- 1 root wheel 3568 Jun 14 00:44 acpi_wakecode.o
-rw-r--r-- 1 root wheel 39408 Jun 14 00:44 acpi_x86.o
-rw-r--r-- 1 root wheel 43216 Jun 14 00:44 acpiac.o
-rw-r--r-- 1 root wheel 48800 Jun 14 00:44 acpials.o
-rw-r--r-- 1 root wheel 48624 Jun 14 00:44 acpiasus.o
-rw-r--r-- 1 root wheel 57032 Jun 14 00:44 acpibat.o
-rw-r--r-- 1 root wheel 54408 Jun 14 00:44 acpibtn.o
-rw-r--r-- 1 root wheel 37128 Jun 14 00:44 acpicbkbd.o
-rw-r--r-- 1 root wheel 17728 Jun 14 00:44 acpicmos.o
-rw-r--r-- 1 root wheel 100840 Jun 14 00:44 acpicpu.o
-rw-r--r-- 1 root wheel 54512 Jun 14 00:44 acpidebug.o
-rw-r--r-- 1 root wheel 291048 Jun 14 00:44 acpidmar.o
-rw-r--r-- 1 root wheel 59000 Jun 14 00:44 acpidock.o
-rw-r--r-- 1 root wheel 84976 Jun 14 00:44 acpiec.o
-rw-r--r-- 1 root wheel 53656 Jun 14 00:44 acpihid.o
-rw-r--r-- 1 root wheel 53752 Jun 14 00:44 acpihpet.o
-rw-r--r-- 1 root wheel 18152 Jun 14 00:44 acpihve.o
-rw-r--r-- 1 root wheel 72912 Jun 14 00:44 acpimadt.o
-rw-r--r-- 1 root wheel 17504 Jun 14 00:44 acpimcfg.o
-rw-r--r-- 1 root wheel 62512 Jun 14 00:44 acpipci.o
-rw-r--r-- 1 root wheel 78728 Jun 14 00:44 acpiprt.o
-rw-r--r-- 1 root wheel 53400 Jun 14 00:44 acpipwrres.o
-rw-r--r-- 1 root wheel 60856 Jun 14 00:44 acpisbs.o
-rw-r--r-- 1 root wheel 58216 Jun 14 00:44 acpisony.o
-rw-r--r-- 1 root wheel 43648 Jun 14 00:44 acpisurface.o
-rw-r--r-- 1 root wheel 82960 Jun 14 00:44 acpithinkpad.o
-rw-r--r-- 1 root wheel 36272 Jun 14 00:44 acpitimer.o
-rw-r--r-- 1 root wheel 69888 Jun 14 00:44 acpitoshiba.o
-rw-r--r-- 1 root wheel 92216 Jun 14 00:44 acpitz.o
-rw-r--r-- 1 root wheel 3664 Jun 14 00:44 acpiutil.o
-rw-r--r-- 1 root wheel 49912 Jun 14 00:44 acpivideo.o
-rw-r--r-- 1 root wheel 58608 Jun 14 00:44 acpivout.o
-rw-r--r-- 1 root wheel 200736 Jun 14 00:43 acx.o
-rw-r--r-- 1 root wheel 90072 Jun 14 00:43 acx100.o
-rw-r--r-- 1 root wheel 71888 Jun 14 00:43 acx111.o
-rw-r--r-- 1 root wheel 19088 Jun 14 00:44 ad741x.o
-rw-r--r-- 1 root wheel 11432 Jun 14 00:43 adler32.o
-rw-r--r-- 1 root wheel 18512 Jun 14 00:44 adm1021.o
-rw-r--r-- 1 root wheel 20616 Jun 14 00:44 adm1024.o
-rw-r--r-- 1 root wheel 20136 Jun 14 00:44 adm1025.o
-rw-r--r-- 1 root wheel 24360 Jun 14 00:44 adm1026.o
-rw-r--r-- 1 root wheel 16232 Jun 14 00:44 adm1030.o
-rw-r--r-- 1 root wheel 16880 Jun 14 00:44 adm1031.o
-rw-r--r-- 1 root wheel 24536 Jun 14 00:44 adt7460.o
-rw-r--r-- 1 root wheel 80416 Jun 14 00:43 adw.o
-rw-r--r-- 1 root wheel 33016 Jun 14 00:43 adw_pci.o
-rw-r--r-- 1 root wheel 89616 Jun 14 00:43 adwlib.o
-rw-r--r-- 1 root wheel 23864 Jun 14 00:43 adwmcode.o
-rw-r--r-- 1 root wheel 68920 Jun 14 00:43 aes.o
-rw-r--r-- 1 root wheel 7560 Jun 14 00:43 aes_intel.o
-rw-r--r-- 1 root wheel 60464 Jun 14 00:43 aesni.o
-rw-r--r-- 1 root wheel 41456 Jun 14 00:43 agp.o
-rw-r--r-- 1 root wheel 246168 Jun 14 00:43 agp_i810.o
-rw-r--r-- 1 root wheel 244832 Jun 14 00:43 agp_intel_gtt.o
-rw-r--r-- 1 root wheel 14496 Jun 14 00:44 agp_machdep.o
-rw-r--r-- 1 root wheel 99472 Jun 14 00:43 ahc_pci.o
-rw-r--r-- 1 root wheel 275992 Jun 14 00:43 ahci.o
-rw-r--r-- 1 root wheel 45616 Jun 14 00:43 ahci_pci.o
-rw-r--r-- 1 root wheel 93584 Jun 14 00:43 ahd_pci.o
-rw-r--r-- 1 root wheel 109432 Jun 14 00:43 aic6360.o
-rw-r--r-- 1 root wheel 98048 Jun 14 00:43 aic6915.o
-rw-r--r-- 1 root wheel 670472 Jun 14 00:43 aic79xx.o
-rw-r--r-- 1 root wheel 83640 Jun 14 00:43 aic79xx_openbsd.o
-rw-r--r-- 1 root wheel 377296 Jun 14 00:43 aic7xxx.o
-rw-r--r-- 1 root wheel 87992 Jun 14 00:43 aic7xxx_openbsd.o
-rw-r--r-- 1 root wheel 73504 Jun 14 00:43 aic7xxx_seeprom.o
-rw-r--r-- 1 root wheel 31288 Jun 14 00:44 aic_pcmcia.o
-rw-r--r-- 1 root wheel 391792 Jun 14 00:43 aldebaran.o
-rw-r--r-- 1 root wheel 539880 Jun 14 00:44 aldebaran_ppt.o
-rw-r--r-- 1 root wheel 376024 Jun 14 00:43 aldebaran_reg_init.o
-rw-r--r-- 1 root wheel 22104 Jun 14 00:44 amas.o
-rw-r--r-- 1 root wheel 61384 Jun 14 00:43 amd64_mem.o
-rw-r--r-- 1 root wheel 32376 Jun 14 00:43 amd64errata.o
-rw-r--r-- 1 root wheel 498664 Jun 14 00:44 amd_powerplay.o
-rw-r--r-- 1 root wheel 62256 Jun 14 00:44 amdgpio.o
-rw-r--r-- 1 root wheel 415840 Jun 14 00:43 amdgpu_acpi.o
-rw-r--r-- 1 root wheel 10960 Jun 14 00:43 amdgpu_afmt.o
-rw-r--r-- 1 root wheel 429472 Jun 14 00:43 amdgpu_amdkfd.o
-rw-r--r-- 1 root wheel 301128 Jun 14 00:43 amdgpu_atom.o
-rw-r--r-- 1 root wheel 469984 Jun 14 00:43 amdgpu_atombios.o
-rw-r--r-- 1 root wheel 415984 Jun 14 00:43 amdgpu_atombios_crtc.o
-rw-r--r-- 1 root wheel 410456 Jun 14 00:43 amdgpu_atombios_dp.o
-rw-r--r-- 1 root wheel 470560 Jun 14 00:43 amdgpu_atombios_encoders.o
-rw-r--r-- 1 root wheel 379560 Jun 14 00:43 amdgpu_atombios_i2c.o
-rw-r--r-- 1 root wheel 440136 Jun 14 00:43 amdgpu_atomfirmware.o
-rw-r--r-- 1 root wheel 379376 Jun 14 00:43 amdgpu_benchmark.o
-rw-r--r-- 1 root wheel 393008 Jun 14 00:43 amdgpu_bios.o
-rw-r--r-- 1 root wheel 398400 Jun 14 00:43 amdgpu_bo_list.o
-rw-r--r-- 1 root wheel 390832 Jun 14 00:43 amdgpu_cgs.o
-rw-r--r-- 1 root wheel 458184 Jun 14 00:43 amdgpu_connectors.o
-rw-r--r-- 1 root wheel 466320 Jun 14 00:43 amdgpu_cs.o
-rw-r--r-- 1 root wheel 374680 Jun 14 00:43 amdgpu_csa.o
-rw-r--r-- 1 root wheel 432816 Jun 14 00:43 amdgpu_ctx.o
-rw-r--r-- 1 root wheel 743240 Jun 14 00:43 amdgpu_dc.o
-rw-r--r-- 1 root wheel 370248 Jun 14 00:43 amdgpu_debugfs.o
-rw-r--r-- 1 root wheel 627432 Jun 14 00:43 amdgpu_device.o
-rw-r--r-- 1 root wheel 439752 Jun 14 00:43 amdgpu_discovery.o
-rw-r--r-- 1 root wheel 469272 Jun 14 00:43 amdgpu_display.o
-rw-r--r-- 1 root wheel 1257968 Jun 14 00:43 amdgpu_dm.o
-rw-r--r-- 1 root wheel 658928 Jun 14 00:43 amdgpu_dm_color.o
-rw-r--r-- 1 root wheel 807704 Jun 14 00:43 amdgpu_dm_crtc.o
-rw-r--r-- 1 root wheel 706072 Jun 14 00:43 amdgpu_dm_helpers.o
-rw-r--r-- 1 root wheel 690824 Jun 14 00:43 amdgpu_dm_irq.o
-rw-r--r-- 1 root wheel 854136 Jun 14 00:43 amdgpu_dm_mst_types.o
-rw-r--r-- 1 root wheel 851256 Jun 14 00:43 amdgpu_dm_plane.o
-rw-r--r-- 1 root wheel 422584 Jun 14 00:43 amdgpu_dm_pp_smu.o
-rw-r--r-- 1 root wheel 784184 Jun 14 00:43 amdgpu_dm_psr.o
-rw-r--r-- 1 root wheel 425920 Jun 14 00:43 amdgpu_dm_services.o
-rw-r--r-- 1 root wheel 380712 Jun 14 00:43 amdgpu_dma_buf.o
-rw-r--r-- 1 root wheel 585576 Jun 14 00:44 amdgpu_dpm.o
-rw-r--r-- 1 root wheel 372760 Jun 14 00:44 amdgpu_dpm_internal.o
-rw-r--r-- 1 root wheel 448896 Jun 14 00:43 amdgpu_drv.o
-rw-r--r-- 1 root wheel 58456 Jun 14 00:43 amdgpu_eeprom.o
-rw-r--r-- 1 root wheel 385640 Jun 14 00:43 amdgpu_encoders.o
-rw-r--r-- 1 root wheel 48848 Jun 14 00:43 amdgpu_fdinfo.o
-rw-r--r-- 1 root wheel 410128 Jun 14 00:43 amdgpu_fence.o
-rw-r--r-- 1 root wheel 376576 Jun 14 00:43 amdgpu_fru_eeprom.o
-rw-r--r-- 1 root wheel 368448 Jun 14 00:43 amdgpu_fw_attestation.o
-rw-r--r-- 1 root wheel 382928 Jun 14 00:43 amdgpu_gart.o
-rw-r--r-- 1 root wheel 446920 Jun 14 00:43 amdgpu_gem.o
-rw-r--r-- 1 root wheel 441904 Jun 14 00:43 amdgpu_gfx.o
-rw-r--r-- 1 root wheel 417408 Jun 14 00:43 amdgpu_gmc.o
-rw-r--r-- 1 root wheel 387168 Jun 14 00:43 amdgpu_gtt_mgr.o
-rw-r--r-- 1 root wheel 403944 Jun 14 00:43 amdgpu_i2c.o
-rw-r--r-- 1 root wheel 388824 Jun 14 00:43 amdgpu_ib.o
-rw-r--r-- 1 root wheel 401032 Jun 14 00:43 amdgpu_ids.o
-rw-r--r-- 1 root wheel 385344 Jun 14 00:43 amdgpu_ih.o
-rw-r--r-- 1 root wheel 411064 Jun 14 00:43 amdgpu_irq.o
-rw-r--r-- 1 root wheel 402560 Jun 14 00:43 amdgpu_job.o
-rw-r--r-- 1 root wheel 386888 Jun 14 00:43 amdgpu_jpeg.o
-rw-r--r-- 1 root wheel 445272 Jun 14 00:43 amdgpu_kms.o
-rw-r--r-- 1 root wheel 372624 Jun 14 00:43 amdgpu_lsdma.o
-rw-r--r-- 1 root wheel 372312 Jun 14 00:43 amdgpu_mca.o
-rw-r--r-- 1 root wheel 466080 Jun 14 00:43 amdgpu_mes.o
-rw-r--r-- 1 root wheel 369040 Jun 14 00:43 amdgpu_nbio.o
-rw-r--r-- 1 root wheel 466760 Jun 14 00:43 amdgpu_object.o
-rw-r--r-- 1 root wheel 383864 Jun 14 00:43 amdgpu_pll.o
-rw-r--r-- 1 root wheel 371536 Jun 14 00:44 amdgpu_pm.o
-rw-r--r-- 1 root wheel 376976 Jun 14 00:43 amdgpu_preempt_mgr.o
-rw-r--r-- 1 root wheel 568648 Jun 14 00:43 amdgpu_psp.o
-rw-r--r-- 1 root wheel 367976 Jun 14 00:43 amdgpu_psp_ta.o
-rw-r--r-- 1 root wheel 367960 Jun 14 00:43 amdgpu_rap.o
-rw-r--r-- 1 root wheel 489552 Jun 14 00:43 amdgpu_ras.o
-rw-r--r-- 1 root wheel 409168 Jun 14 00:43 amdgpu_ras_eeprom.o
-rw-r--r-- 1 root wheel 383200 Jun 14 00:43 amdgpu_reset.o
-rw-r--r-- 1 root wheel 394008 Jun 14 00:43 amdgpu_ring.o
-rw-r--r-- 1 root wheel 395560 Jun 14 00:43 amdgpu_rlc.o
-rw-r--r-- 1 root wheel 395880 Jun 14 00:43 amdgpu_sa.o
-rw-r--r-- 1 root wheel 370600 Jun 14 00:43 amdgpu_sched.o
-rw-r--r-- 1 root wheel 386960 Jun 14 00:43 amdgpu_sdma.o
-rw-r--r-- 1 root wheel 374424 Jun 14 00:43 amdgpu_securedisplay.o
-rw-r--r-- 1 root wheel 577944 Jun 14 00:44 amdgpu_smu.o
-rw-r--r-- 1 root wheel 390360 Jun 14 00:43 amdgpu_sync.o
-rw-r--r-- 1 root wheel 576 Jun 14 00:43 amdgpu_trace_points.o
-rw-r--r-- 1 root wheel 481856 Jun 14 00:43 amdgpu_ttm.o
-rw-r--r-- 1 root wheel 424712 Jun 14 00:43 amdgpu_ucode.o
-rw-r--r-- 1 root wheel 379136 Jun 14 00:43 amdgpu_umc.o
-rw-r--r-- 1 root wheel 445488 Jun 14 00:43 amdgpu_uvd.o
-rw-r--r-- 1 root wheel 449088 Jun 14 00:43 amdgpu_vce.o
-rw-r--r-- 1 root wheel 440576 Jun 14 00:43 amdgpu_vcn.o
-rw-r--r-- 1 root wheel 30640 Jun 14 00:43 amdgpu_vector.o
-rw-r--r-- 1 root wheel 371688 Jun 14 00:43 amdgpu_vf_error.o
-rw-r--r-- 1 root wheel 436808 Jun 14 00:43 amdgpu_virt.o
-rw-r--r-- 1 root wheel 4984 Jun 14 00:43 amdgpu_vkms.o
-rw-r--r-- 1 root wheel 530160 Jun 14 00:43 amdgpu_vm.o
-rw-r--r-- 1 root wheel 373344 Jun 14 00:43 amdgpu_vm_cpu.o
-rw-r--r-- 1 root wheel 444744 Jun 14 00:43 amdgpu_vm_pt.o
-rw-r--r-- 1 root wheel 385168 Jun 14 00:43 amdgpu_vm_sdma.o
-rw-r--r-- 1 root wheel 414840 Jun 14 00:43 amdgpu_vram_mgr.o
-rw-r--r-- 1 root wheel 409192 Jun 14 00:43 amdgpu_xgmi.o
-rw-r--r-- 1 root wheel 35328 Jun 14 00:43 amdiic.o
-rw-r--r-- 1 root wheel 20384 Jun 14 00:44 amdpcib.o
-rw-r--r-- 1 root wheel 37184 Jun 14 00:43 amdpm.o
-rw-r--r-- 1 root wheel 167056 Jun 14 00:43 ami.o
-rw-r--r-- 1 root wheel 47696 Jun 14 00:43 ami_pci.o
-rw-r--r-- 1 root wheel 33392 Jun 14 00:43 amphy.o
-rw-r--r-- 1 root wheel 150920 Jun 14 00:43 an.o
-rw-r--r-- 1 root wheel 4088 Jun 14 00:43 apic.o
-rw-r--r-- 1 root wheel 54336 Jun 14 00:44 aplgpio.o
-rw-r--r-- 1 root wheel 34256 Jun 14 00:44 aps.o
-rw-r--r-- 1 root wheel 215400 Jun 14 00:43 ar5008.o
-rw-r--r-- 1 root wheel 155584 Jun 14 00:43 ar5210.o
-rw-r--r-- 1 root wheel 163112 Jun 14 00:43 ar5211.o
-rw-r--r-- 1 root wheel 186360 Jun 14 00:43 ar5212.o
-rw-r--r-- 1 root wheel 131976 Jun 14 00:43 ar5416.o
-rw-r--r-- 1 root wheel 153000 Jun 14 00:43 ar5xxx.o
-rw-r--r-- 1 root wheel 246248 Jun 14 00:43 ar9003.o
-rw-r--r-- 1 root wheel 107016 Jun 14 00:43 ar9280.o
-rw-r--r-- 1 root wheel 124824 Jun 14 00:43 ar9285.o
-rw-r--r-- 1 root wheel 104632 Jun 14 00:43 ar9287.o
-rw-r--r-- 1 root wheel 136408 Jun 14 00:43 ar9380.o
-rw-r--r-- 1 root wheel 183376 Jun 14 00:43 arc.o
-rw-r--r-- 1 root wheel 8112 Jun 14 00:43 arc4.o
-rw-r--r-- 1 root wheel 377848 Jun 14 00:43 arct_reg_init.o
-rw-r--r-- 1 root wheel 546480 Jun 14 00:44 arcturus_ppt.o
-rw-r--r-- 1 root wheel 62728 Jun 14 00:43 art.o
-rw-r--r-- 1 root wheel 26368 Jun 14 00:44 asc7611.o
-rw-r--r-- 1 root wheel 18376 Jun 14 00:44 asc7621.o
-rw-r--r-- 1 root wheel 97984 Jun 14 00:44 asmc.o
-rw-r--r-- 1 root wheel 22104 Jun 14 00:43 ata.o
-rw-r--r-- 1 root wheel 66248 Jun 14 00:43 ata_wdc.o
-rw-r--r-- 1 root wheel 109752 Jun 14 00:43 atapiscsi.o
-rw-r--r-- 1 root wheel 143840 Jun 14 00:43 atascsi.o
-rw-r--r-- 1 root wheel 222008 Jun 14 00:43 ath.o
-rw-r--r-- 1 root wheel 232368 Jun 14 00:43 athn.o
-rw-r--r-- 1 root wheel 373360 Jun 14 00:43 athub_v1_0.o
-rw-r--r-- 1 root wheel 372992 Jun 14 00:43 athub_v2_0.o
-rw-r--r-- 1 root wheel 373336 Jun 14 00:43 athub_v2_1.o
-rw-r--r-- 1 root wheel 374480 Jun 14 00:43 athub_v3_0.o
-rw-r--r-- 1 root wheel 63624 Jun 14 00:44 atk0110.o
-rw-r--r-- 1 root wheel 366392 Jun 14 00:43 atom.o
-rw-r--r-- 1 root wheel 355888 Jun 14 00:43 atombios_crtc.o
-rw-r--r-- 1 root wheel 263104 Jun 14 00:43 atombios_dp.o
-rw-r--r-- 1 root wheel 359928 Jun 14 00:43 atombios_encoders.o
-rw-r--r-- 1 root wheel 223432 Jun 14 00:43 atombios_i2c.o
-rw-r--r-- 1 root wheel 36904 Jun 14 00:43 atphy.o
-rw-r--r-- 1 root wheel 205872 Jun 14 00:43 atw.o
-rw-r--r-- 1 root wheel 69176 Jun 14 00:43 auacer.o
-rw-r--r-- 1 root wheel 188256 Jun 14 00:43 audio.o
-rw-r--r-- 1 root wheel 82712 Jun 14 00:43 auich.o
-rw-r--r-- 1 root wheel 100264 Jun 14 00:43 auixp.o
-rw-r--r-- 1 root wheel 30824 Jun 14 00:43 autoconf.o
-rw-r--r-- 1 root wheel 72024 Jun 14 00:43 auvia.o
-rw-r--r-- 1 root wheel 41424 Jun 14 00:43 ax88190.o
-rw-r--r-- 1 root wheel 211560 Jun 14 00:43 azalia.o
-rw-r--r-- 1 root wheel 105712 Jun 14 00:43 azalia_codec.o
-rw-r--r-- 1 root wheel 744 Jun 14 00:43 bcmp.o
-rw-r--r-- 1 root wheel 400 Jun 14 00:43 bcopy.o
-rw-r--r-- 1 root wheel 24640 Jun 14 00:43 bio.o
-rw-r--r-- 1 root wheel 48520 Jun 14 00:43 bios.o
-rw-r--r-- 1 root wheel 419840 Jun 14 00:43 bios_parser.o
-rw-r--r-- 1 root wheel 591208 Jun 14 00:43 bios_parser2.o
-rw-r--r-- 1 root wheel 12280 Jun 14 00:43 bios_parser_common.o
-rw-r--r-- 1 root wheel 46344 Jun 14 00:43 bios_parser_helper.o
-rw-r--r-- 1 root wheel 44024 Jun 14 00:43 bios_parser_interface.o
-rw-r--r-- 1 root wheel 44312 Jun 14 00:43 bktr_audio.o
-rw-r--r-- 1 root wheel 57160 Jun 14 00:43 bktr_card.o
-rw-r--r-- 1 root wheel 214480 Jun 14 00:43 bktr_core.o
-rw-r--r-- 1 root wheel 47992 Jun 14 00:43 bktr_os.o
-rw-r--r-- 1 root wheel 33960 Jun 14 00:43 bktr_tuner.o
-rw-r--r-- 1 root wheel 164576 Jun 14 00:43 blake2s.o
-rw-r--r-- 1 root wheel 36368 Jun 14 00:43 blf.o
-rw-r--r-- 1 root wheel 17560 Jun 14 00:44 bmc150.o
-rw-r--r-- 1 root wheel 34696 Jun 14 00:43 bmtphy.o
-rw-r--r-- 1 root wheel 184128 Jun 14 00:43 bpf.o
-rw-r--r-- 1 root wheel 14768 Jun 14 00:43 bpf_filter.o
-rw-r--r-- 1 root wheel 113632 Jun 14 00:43 brgphy.o
-rw-r--r-- 1 root wheel 85696 Jun 14 00:43 bridgectl.o
-rw-r--r-- 1 root wheel 138776 Jun 14 00:43 bridgestp.o
-rw-r--r-- 1 root wheel 48008 Jun 14 00:43 bsd-comp.o
-rw-r--r-- 1 root wheel 356160 Jun 14 00:43 btc_dpm.o
-rw-r--r-- 1 root wheel 85096 Jun 14 00:43 bus_dma.o
-rw-r--r-- 1 root wheel 117896 Jun 14 00:43 bus_space.o
-rw-r--r-- 1 root wheel 16640 Jun 14 00:43 bw_fixed.o
-rw-r--r-- 1 root wheel 312504 Jun 14 00:43 bwfm.o
-rw-r--r-- 1 root wheel 864896 Jun 14 00:43 bwi.o
-rw-r--r-- 1 root wheel 55352 Jun 14 00:44 bytgpio.o
-rw-r--r-- 1 root wheel 768 Jun 14 00:43 bzero.o
-rw-r--r-- 1 root wheel 29728 Jun 14 00:43 cacheinfo.o
-rw-r--r-- 1 root wheel 56080 Jun 14 00:44 cardbus.o
-rw-r--r-- 1 root wheel 9480 Jun 14 00:44 cardbus_exrom.o
-rw-r--r-- 1 root wheel 22072 Jun 14 00:44 cardbus_map.o
-rw-r--r-- 1 root wheel 44488 Jun 14 00:44 cardslot.o
-rw-r--r-- 1 root wheel 28672 Jun 14 00:43 cast.o
-rw-r--r-- 1 root wheel 12432 Jun 14 00:43 ccp.o
-rw-r--r-- 1 root wheel 18816 Jun 14 00:43 ccp_pci.o
-rw-r--r-- 1 root wheel 66232 Jun 14 00:44 ccpmic.o
-rw-r--r-- 1 root wheel 148776 Jun 14 00:43 cd.o
-rw-r--r-- 1 root wheel 40280 Jun 14 00:43 cd9660_bmap.o
-rw-r--r-- 1 root wheel 55240 Jun 14 00:43 cd9660_lookup.o
-rw-r--r-- 1 root wheel 63840 Jun 14 00:43 cd9660_node.o
-rw-r--r-- 1 root wheel 73584 Jun 14 00:43 cd9660_rrip.o
-rw-r--r-- 1 root wheel 11528 Jun 14 00:43 cd9660_util.o
-rw-r--r-- 1 root wheel 114840 Jun 14 00:43 cd9660_vfsops.o
-rw-r--r-- 1 root wheel 92656 Jun 14 00:43 cd9660_vnops.o
-rw-r--r-- 1 root wheel 55960 Jun 14 00:43 ch.o
-rw-r--r-- 1 root wheel 43712 Jun 14 00:43 chachapoly.o
-rw-r--r-- 1 root wheel 61912 Jun 14 00:44 chvgpio.o
-rw-r--r-- 1 root wheel 51152 Jun 14 00:44 ci_baco.o
-rw-r--r-- 1 root wheel 588728 Jun 14 00:43 ci_dpm.o
-rw-r--r-- 1 root wheel 237416 Jun 14 00:43 ci_smc.o
-rw-r--r-- 1 root wheel 566280 Jun 14 00:44 ci_smumgr.o
-rw-r--r-- 1 root wheel 816464 Jun 14 00:43 cik.o
-rw-r--r-- 1 root wheel 282552 Jun 14 00:43 cik_sdma.o
-rw-r--r-- 1 root wheel 38192 Jun 14 00:43 ciphy.o
-rw-r--r-- 1 root wheel 100944 Jun 14 00:43 ciss.o
-rw-r--r-- 1 root wheel 36912 Jun 14 00:43 ciss_pci.o
-rw-r--r-- 1 root wheel 462560 Jun 14 00:43 clk_mgr.o
-rw-r--r-- 1 root wheel 53968 Jun 14 00:43 clock.o
-rw-r--r-- 1 root wheel 8880 Jun 14 00:43 clock_subr.o
-rw-r--r-- 1 root wheel 11992 Jun 14 00:43 cmac.o
-rw-r--r-- 1 root wheel 112976 Jun 14 00:43 cmpci.o
-rw-r--r-- 1 root wheel 4392 Jun 14 00:43 cninit.o
-rw-r--r-- 1 root wheel 21592 Jun 14 00:43 codepatch.o
-rw-r--r-- 1 root wheel 445352 Jun 14 00:44 color_gamma.o
-rw-r--r-- 1 root wheel 6032 Jun 14 00:44 color_table.o
-rw-r--r-- 1 root wheel 130176 Jun 14 00:43 com.o
-rw-r--r-- 1 root wheel 53992 Jun 14 00:44 com_acpi.o
-rw-r--r-- 1 root wheel 44152 Jun 14 00:44 com_cardbus.o
-rw-r--r-- 1 root wheel 26664 Jun 14 00:44 com_isa.o
-rw-r--r-- 1 root wheel 32280 Jun 14 00:43 com_pci.o
-rw-r--r-- 1 root wheel 38792 Jun 14 00:44 com_pcmcia.o
-rw-r--r-- 1 root wheel 22064 Jun 14 00:43 com_puc.o
-rw-r--r-- 1 root wheel 508264 Jun 14 00:43 command_table.o
-rw-r--r-- 1 root wheel 738400 Jun 14 00:43 command_table2.o
-rw-r--r-- 1 root wheel 24112 Jun 14 00:43 command_table_helper.o
-rw-r--r-- 1 root wheel 22904 Jun 14 00:43 command_table_helper2.o
-rw-r--r-- 1 root wheel 26368 Jun 14 00:43 command_table_helper2_dce112.o
-rw-r--r-- 1 root wheel 23960 Jun 14 00:43 command_table_helper_dce110.o
-rw-r--r-- 1 root wheel 26352 Jun 14 00:43 command_table_helper_dce112.o
-rw-r--r-- 1 root wheel 24376 Jun 14 00:43 command_table_helper_dce80.o
-rw-r--r-- 1 root wheel 406280 Jun 14 00:44 common_baco.o
-rw-r--r-- 1 root wheel 7720 Jun 14 00:43 compress.o
-rw-r--r-- 1 root wheel 77448 Jun 14 00:43 conf.o
-rw-r--r-- 1 root wheel 40920 Jun 14 00:43 cons.o
-rw-r--r-- 1 root wheel 2664 Jun 14 00:43 consinit.o
-rw-r--r-- 1 root wheel 13096 Jun 14 00:43 conversion.o
-rw-r--r-- 1 root wheel 3200 Jun 14 00:43 copy.o
-rw-r--r-- 1 root wheel 134096 Jun 14 00:43 cpu.o
-rw-r--r-- 1 root wheel 37104 Jun 14 00:43 crc32.o
-rw-r--r-- 1 root wheel 13864 Jun 14 00:43 criov.o
-rw-r--r-- 1 root wheel 31952 Jun 14 00:43 crypto.o
-rw-r--r-- 1 root wheel 52424 Jun 14 00:43 cryptosoft.o
-rw-r--r-- 1 root wheel 91952 Jun 14 00:43 cs4280.o
-rw-r--r-- 1 root wheel 82096 Jun 14 00:43 curve25519.o
-rw-r--r-- 1 root wheel 14120 Jun 14 00:43 custom_float.o
-rw-r--r-- 1 root wheel 70088 Jun 14 00:43 cy.o
-rw-r--r-- 1 root wheel 10936 Jun 14 00:43 cy82c693.o
-rw-r--r-- 1 root wheel 22456 Jun 14 00:43 cy_pci.o
-rw-r--r-- 1 root wheel 454104 Jun 14 00:44 cyan_skillfish_ppt.o
-rw-r--r-- 1 root wheel 377328 Jun 14 00:43 cypress_dpm.o
-rw-r--r-- 1 root wheel 389368 Jun 14 00:43 cz_ih.o
-rw-r--r-- 1 root wheel 6376 Jun 14 00:43 db_access.o
-rw-r--r-- 1 root wheel 22152 Jun 14 00:43 db_break.o
-rw-r--r-- 1 root wheel 122128 Jun 14 00:43 db_command.o
-rw-r--r-- 1 root wheel 41904 Jun 14 00:43 db_ctf.o
-rw-r--r-- 1 root wheel 66384 Jun 14 00:43 db_disasm.o
-rw-r--r-- 1 root wheel 35568 Jun 14 00:43 db_dwarf.o
-rw-r--r-- 1 root wheel 28112 Jun 14 00:43 db_elf.o
-rw-r--r-- 1 root wheel 21968 Jun 14 00:43 db_examine.o
-rw-r--r-- 1 root wheel 12328 Jun 14 00:43 db_expr.o
-rw-r--r-- 1 root wheel 11952 Jun 14 00:43 db_hangman.o
-rw-r--r-- 1 root wheel 23664 Jun 14 00:43 db_input.o
-rw-r--r-- 1 root wheel 58344 Jun 14 00:43 db_interface.o
-rw-r--r-- 1 root wheel 16632 Jun 14 00:43 db_lex.o
-rw-r--r-- 1 root wheel 8792 Jun 14 00:43 db_memrw.o
-rw-r--r-- 1 root wheel 42712 Jun 14 00:43 db_output.o
-rw-r--r-- 1 root wheel 3504 Jun 14 00:43 db_rint.o
-rw-r--r-- 1 root wheel 15512 Jun 14 00:43 db_run.o
-rw-r--r-- 1 root wheel 12024 Jun 14 00:43 db_sym.o
-rw-r--r-- 1 root wheel 63000 Jun 14 00:43 db_trace.o
-rw-r--r-- 1 root wheel 5680 Jun 14 00:43 db_trap.o
-rw-r--r-- 1 root wheel 44264 Jun 14 00:43 db_usrreq.o
-rw-r--r-- 1 root wheel 14976 Jun 14 00:43 db_variables.o
-rw-r--r-- 1 root wheel 27464 Jun 14 00:43 db_watch.o
-rw-r--r-- 1 root wheel 202320 Jun 14 00:43 dc.o
-rw-r--r-- 1 root wheel 429704 Jun 14 00:43 dc_common.o
-rw-r--r-- 1 root wheel 435304 Jun 14 00:43 dc_debug.o
-rw-r--r-- 1 root wheel 532960 Jun 14 00:43 dc_dmub_srv.o
-rw-r--r-- 1 root wheel 340832 Jun 14 00:43 dc_dsc.o
-rw-r--r-- 1 root wheel 428616 Jun 14 00:43 dc_edid_parser.o
-rw-r--r-- 1 root wheel 5640 Jun 14 00:43 dc_fpu.o
-rw-r--r-- 1 root wheel 407424 Jun 14 00:43 dc_helper.o
-rw-r--r-- 1 root wheel 436800 Jun 14 00:43 dc_hw_sequencer.o
-rw-r--r-- 1 root wheel 656464 Jun 14 00:43 dc_link.o
-rw-r--r-- 1 root wheel 472464 Jun 14 00:43 dc_link_ddc.o
-rw-r--r-- 1 root wheel 866824 Jun 14 00:43 dc_link_dp.o
-rw-r--r-- 1 root wheel 300016 Jun 14 00:43 dc_link_dpcd.o
-rw-r--r-- 1 root wheel 378144 Jun 14 00:43 dc_link_dpia.o
-rw-r--r-- 1 root wheel 488192 Jun 14 00:43 dc_link_enc_cfg.o
-rw-r--r-- 1 root wheel 602192 Jun 14 00:43 dc_resource.o
-rw-r--r-- 1 root wheel 430360 Jun 14 00:43 dc_sink.o
-rw-r--r-- 1 root wheel 343064 Jun 14 00:43 dc_stat.o
-rw-r--r-- 1 root wheel 517696 Jun 14 00:43 dc_stream.o
-rw-r--r-- 1 root wheel 449520 Jun 14 00:43 dc_surface.o
-rw-r--r-- 1 root wheel 295184 Jun 14 00:43 dc_vm_helper.o
-rw-r--r-- 1 root wheel 440712 Jun 14 00:43 dce100_hw_sequencer.o
-rw-r--r-- 1 root wheel 598632 Jun 14 00:43 dce100_resource.o
-rw-r--r-- 1 root wheel 450440 Jun 14 00:43 dce110_clk_mgr.o
-rw-r--r-- 1 root wheel 69296 Jun 14 00:43 dce110_compressor.o
-rw-r--r-- 1 root wheel 607088 Jun 14 00:43 dce110_hw_sequencer.o
-rw-r--r-- 1 root wheel 356712 Jun 14 00:43 dce110_mem_input_v.o
-rw-r--r-- 1 root wheel 52024 Jun 14 00:43 dce110_opp_csc_v.o
-rw-r--r-- 1 root wheel 54296 Jun 14 00:43 dce110_opp_regamma_v.o
-rw-r--r-- 1 root wheel 431168 Jun 14 00:43 dce110_opp_v.o
-rw-r--r-- 1 root wheel 605200 Jun 14 00:43 dce110_resource.o
-rw-r--r-- 1 root wheel 392152 Jun 14 00:43 dce110_timing_generator.o
-rw-r--r-- 1 root wheel 336896 Jun 14 00:43 dce110_timing_generator_v.o
-rw-r--r-- 1 root wheel 345192 Jun 14 00:43 dce110_transform_v.o
-rw-r--r-- 1 root wheel 444904 Jun 14 00:43 dce112_clk_mgr.o
-rw-r--r-- 1 root wheel 81504 Jun 14 00:43 dce112_compressor.o
-rw-r--r-- 1 root wheel 433968 Jun 14 00:43 dce112_hw_sequencer.o
-rw-r--r-- 1 root wheel 604528 Jun 14 00:43 dce112_resource.o
-rw-r--r-- 1 root wheel 447728 Jun 14 00:43 dce120_clk_mgr.o
-rw-r--r-- 1 root wheel 452424 Jun 14 00:43 dce120_hw_sequencer.o
-rw-r--r-- 1 root wheel 609072 Jun 14 00:43 dce120_resource.o
-rw-r--r-- 1 root wheel 113952 Jun 14 00:43 dce120_timing_generator.o
-rw-r--r-- 1 root wheel 242768 Jun 14 00:43 dce3_1_afmt.o
-rw-r--r-- 1 root wheel 241912 Jun 14 00:43 dce6_afmt.o
-rw-r--r-- 1 root wheel 449336 Jun 14 00:43 dce80_hw_sequencer.o
-rw-r--r-- 1 root wheel 630032 Jun 14 00:43 dce80_resource.o
-rw-r--r-- 1 root wheel 35200 Jun 14 00:43 dce80_timing_generator.o
-rw-r--r-- 1 root wheel 310304 Jun 14 00:43 dce_abm.o
-rw-r--r-- 1 root wheel 53272 Jun 14 00:43 dce_audio.o
-rw-r--r-- 1 root wheel 466672 Jun 14 00:43 dce_aux.o
-rw-r--r-- 1 root wheel 619848 Jun 14 00:43 dce_calcs.o
-rw-r--r-- 1 root wheel 463680 Jun 14 00:43 dce_clk_mgr.o
-rw-r--r-- 1 root wheel 507008 Jun 14 00:43 dce_clock_source.o
-rw-r--r-- 1 root wheel 483200 Jun 14 00:43 dce_dmcu.o
-rw-r--r-- 1 root wheel 459432 Jun 14 00:43 dce_hwseq.o
-rw-r--r-- 1 root wheel 435984 Jun 14 00:43 dce_i2c.o
-rw-r--r-- 1 root wheel 463464 Jun 14 00:43 dce_i2c_hw.o
-rw-r--r-- 1 root wheel 462224 Jun 14 00:43 dce_i2c_sw.o
-rw-r--r-- 1 root wheel 38752 Jun 14 00:43 dce_ipp.o
-rw-r--r-- 1 root wheel 491600 Jun 14 00:43 dce_link_encoder.o
-rw-r--r-- 1 root wheel 348056 Jun 14 00:43 dce_mem_input.o
-rw-r--r-- 1 root wheel 445288 Jun 14 00:43 dce_opp.o
-rw-r--r-- 1 root wheel 487848 Jun 14 00:43 dce_panel_cntl.o
-rw-r--r-- 1 root wheel 26552 Jun 14 00:43 dce_scl_filters.o
-rw-r--r-- 1 root wheel 576 Jun 14 00:43 dce_scl_filters_old.o
-rw-r--r-- 1 root wheel 383504 Jun 14 00:43 dce_stream_encoder.o
-rw-r--r-- 1 root wheel 361296 Jun 14 00:43 dce_transform.o
-rw-r--r-- 1 root wheel 573208 Jun 14 00:43 dce_v10_0.o
-rw-r--r-- 1 root wheel 574712 Jun 14 00:43 dce_v11_0.o
-rw-r--r-- 1 root wheel 325560 Jun 14 00:43 dcn10_cm_common.o
-rw-r--r-- 1 root wheel 533088 Jun 14 00:43 dcn10_dpp.o
-rw-r--r-- 1 root wheel 554640 Jun 14 00:43 dcn10_dpp_cm.o
-rw-r--r-- 1 root wheel 543720 Jun 14 00:43 dcn10_dpp_dscl.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 dcn10_dwb.o
-rw-r--r-- 1 root wheel 17568 Jun 14 00:43 dcn10_fpu.o
-rw-r--r-- 1 root wheel 487624 Jun 14 00:43 dcn10_hubbub.o
-rw-r--r-- 1 root wheel 406944 Jun 14 00:43 dcn10_hubp.o
-rw-r--r-- 1 root wheel 750232 Jun 14 00:43 dcn10_hw_sequencer.o
-rw-r--r-- 1 root wheel 546144 Jun 14 00:43 dcn10_hw_sequencer_debug.o
-rw-r--r-- 1 root wheel 437512 Jun 14 00:43 dcn10_init.o
-rw-r--r-- 1 root wheel 25728 Jun 14 00:43 dcn10_ipp.o
-rw-r--r-- 1 root wheel 520152 Jun 14 00:43 dcn10_link_encoder.o
-rw-r--r-- 1 root wheel 60008 Jun 14 00:43 dcn10_mpc.o
-rw-r--r-- 1 root wheel 41840 Jun 14 00:43 dcn10_opp.o
-rw-r--r-- 1 root wheel 400680 Jun 14 00:43 dcn10_optc.o
-rw-r--r-- 1 root wheel 807048 Jun 14 00:43 dcn10_resource.o
-rw-r--r-- 1 root wheel 400112 Jun 14 00:43 dcn10_stream_encoder.o
-rw-r--r-- 1 root wheel 447224 Jun 14 00:43 dcn201_clk_mgr.o
-rw-r--r-- 1 root wheel 445048 Jun 14 00:43 dcn201_dccg.o
-rw-r--r-- 1 root wheel 527056 Jun 14 00:43 dcn201_dpp.o
-rw-r--r-- 1 root wheel 454904 Jun 14 00:43 dcn201_hubbub.o
-rw-r--r-- 1 root wheel 346248 Jun 14 00:43 dcn201_hubp.o
-rw-r--r-- 1 root wheel 492256 Jun 14 00:43 dcn201_hwseq.o
-rw-r--r-- 1 root wheel 438040 Jun 14 00:43 dcn201_init.o
-rw-r--r-- 1 root wheel 466536 Jun 14 00:43 dcn201_link_encoder.o
-rw-r--r-- 1 root wheel 34720 Jun 14 00:43 dcn201_mpc.o
-rw-r--r-- 1 root wheel 32448 Jun 14 00:43 dcn201_opp.o
-rw-r--r-- 1 root wheel 335360 Jun 14 00:43 dcn201_optc.o
-rw-r--r-- 1 root wheel 831952 Jun 14 00:43 dcn201_resource.o
-rw-r--r-- 1 root wheel 470440 Jun 14 00:43 dcn20_clk_mgr.o
-rw-r--r-- 1 root wheel 453256 Jun 14 00:43 dcn20_dccg.o
-rw-r--r-- 1 root wheel 535552 Jun 14 00:43 dcn20_dpp.o
-rw-r--r-- 1 root wheel 563968 Jun 14 00:43 dcn20_dpp_cm.o
-rw-r--r-- 1 root wheel 81080 Jun 14 00:43 dcn20_dsc.o
-rw-r--r-- 1 root wheel 458120 Jun 14 00:43 dcn20_dwb.o
-rw-r--r-- 1 root wheel 479200 Jun 14 00:43 dcn20_dwb_scl.o
-rw-r--r-- 1 root wheel 526896 Jun 14 00:43 dcn20_fpu.o
-rw-r--r-- 1 root wheel 482264 Jun 14 00:43 dcn20_hubbub.o
-rw-r--r-- 1 root wheel 425416 Jun 14 00:43 dcn20_hubp.o
-rw-r--r-- 1 root wheel 638656 Jun 14 00:43 dcn20_hwseq.o
-rw-r--r-- 1 root wheel 439256 Jun 14 00:43 dcn20_init.o
-rw-r--r-- 1 root wheel 475984 Jun 14 00:43 dcn20_link_encoder.o
-rw-r--r-- 1 root wheel 457760 Jun 14 00:43 dcn20_mmhubbub.o
-rw-r--r-- 1 root wheel 341248 Jun 14 00:43 dcn20_mpc.o
-rw-r--r-- 1 root wheel 45080 Jun 14 00:43 dcn20_opp.o
-rw-r--r-- 1 root wheel 357928 Jun 14 00:43 dcn20_optc.o
-rw-r--r-- 1 root wheel 999488 Jun 14 00:43 dcn20_resource.o
-rw-r--r-- 1 root wheel 354896 Jun 14 00:43 dcn20_stream_encoder.o
-rw-r--r-- 1 root wheel 434088 Jun 14 00:43 dcn20_vmid.o
-rw-r--r-- 1 root wheel 446416 Jun 14 00:43 dcn21_dccg.o
-rw-r--r-- 1 root wheel 477696 Jun 14 00:43 dcn21_hubbub.o
-rw-r--r-- 1 root wheel 425544 Jun 14 00:43 dcn21_hubp.o
-rw-r--r-- 1 root wheel 522304 Jun 14 00:43 dcn21_hwseq.o
-rw-r--r-- 1 root wheel 439560 Jun 14 00:43 dcn21_init.o
-rw-r--r-- 1 root wheel 474272 Jun 14 00:43 dcn21_link_encoder.o
-rw-r--r-- 1 root wheel 925312 Jun 14 00:43 dcn21_resource.o
-rw-r--r-- 1 root wheel 444360 Jun 14 00:43 dcn301_dccg.o
-rw-r--r-- 1 root wheel 464296 Jun 14 00:43 dcn301_dio_link_encoder.o
-rw-r--r-- 1 root wheel 448984 Jun 14 00:43 dcn301_fpu.o
-rw-r--r-- 1 root wheel 453472 Jun 14 00:43 dcn301_hubbub.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 dcn301_hwseq.o
-rw-r--r-- 1 root wheel 439248 Jun 14 00:43 dcn301_init.o
-rw-r--r-- 1 root wheel 484880 Jun 14 00:43 dcn301_panel_cntl.o
-rw-r--r-- 1 root wheel 1074968 Jun 14 00:43 dcn301_resource.o
-rw-r--r-- 1 root wheel 454608 Jun 14 00:43 dcn301_smu.o
-rw-r--r-- 1 root wheel 444448 Jun 14 00:43 dcn302_fpu.o
-rw-r--r-- 1 root wheel 334728 Jun 14 00:43 dcn302_hwseq.o
-rw-r--r-- 1 root wheel 308552 Jun 14 00:43 dcn302_init.o
-rw-r--r-- 1 root wheel 1075136 Jun 14 00:43 dcn302_resource.o
-rw-r--r-- 1 root wheel 444784 Jun 14 00:43 dcn303_fpu.o
-rw-r--r-- 1 root wheel 329048 Jun 14 00:43 dcn303_hwseq.o
-rw-r--r-- 1 root wheel 308656 Jun 14 00:43 dcn303_init.o
-rw-r--r-- 1 root wheel 1063688 Jun 14 00:43 dcn303_resource.o
-rw-r--r-- 1 root wheel 58512 Jun 14 00:43 dcn30_afmt.o
-rw-r--r-- 1 root wheel 473952 Jun 14 00:43 dcn30_clk_mgr.o
-rw-r--r-- 1 root wheel 453696 Jun 14 00:43 dcn30_clk_mgr_smu_msg.o
-rw-r--r-- 1 root wheel 460008 Jun 14 00:43 dcn30_cm_common.o
-rw-r--r-- 1 root wheel 446096 Jun 14 00:43 dcn30_dccg.o
-rw-r--r-- 1 root wheel 466112 Jun 14 00:43 dcn30_dio_link_encoder.o
-rw-r--r-- 1 root wheel 488320 Jun 14 00:43 dcn30_dio_stream_encoder.o
-rw-r--r-- 1 root wheel 604136 Jun 14 00:43 dcn30_dpp.o
-rw-r--r-- 1 root wheel 545976 Jun 14 00:43 dcn30_dpp_cm.o
-rw-r--r-- 1 root wheel 481976 Jun 14 00:43 dcn30_dwb.o
-rw-r--r-- 1 root wheel 487000 Jun 14 00:43 dcn30_dwb_cm.o
-rw-r--r-- 1 root wheel 492416 Jun 14 00:43 dcn30_fpu.o
-rw-r--r-- 1 root wheel 469960 Jun 14 00:43 dcn30_hubbub.o
-rw-r--r-- 1 root wheel 365720 Jun 14 00:43 dcn30_hubp.o
-rw-r--r-- 1 root wheel 562776 Jun 14 00:43 dcn30_hwseq.o
-rw-r--r-- 1 root wheel 439696 Jun 14 00:43 dcn30_init.o
-rw-r--r-- 1 root wheel 455648 Jun 14 00:43 dcn30_mmhubbub.o
-rw-r--r-- 1 root wheel 415536 Jun 14 00:43 dcn30_mpc.o
-rw-r--r-- 1 root wheel 520360 Jun 14 00:43 dcn30_optc.o
-rw-r--r-- 1 root wheel 1183584 Jun 14 00:43 dcn30_resource.o
-rw-r--r-- 1 root wheel 54712 Jun 14 00:43 dcn30_vpg.o
-rw-r--r-- 1 root wheel 530224 Jun 14 00:43 dcn314_clk_mgr.o
-rw-r--r-- 1 root wheel 457112 Jun 14 00:43 dcn314_dccg.o
-rw-r--r-- 1 root wheel 351224 Jun 14 00:43 dcn314_dio_stream_encoder.o
-rw-r--r-- 1 root wheel 448904 Jun 14 00:43 dcn314_fpu.o
-rw-r--r-- 1 root wheel 541736 Jun 14 00:43 dcn314_hwseq.o
-rw-r--r-- 1 root wheel 439816 Jun 14 00:43 dcn314_init.o
-rw-r--r-- 1 root wheel 338696 Jun 14 00:43 dcn314_optc.o
-rw-r--r-- 1 root wheel 1102880 Jun 14 00:43 dcn314_resource.o
-rw-r--r-- 1 root wheel 455248 Jun 14 00:43 dcn314_smu.o
-rw-r--r-- 1 root wheel 521656 Jun 14 00:43 dcn315_clk_mgr.o
-rw-r--r-- 1 root wheel 1104016 Jun 14 00:43 dcn315_resource.o
-rw-r--r-- 1 root wheel 454184 Jun 14 00:43 dcn315_smu.o
-rw-r--r-- 1 root wheel 523072 Jun 14 00:43 dcn316_clk_mgr.o
-rw-r--r-- 1 root wheel 1104488 Jun 14 00:43 dcn316_resource.o
-rw-r--r-- 1 root wheel 454104 Jun 14 00:43 dcn316_smu.o
-rw-r--r-- 1 root wheel 297344 Jun 14 00:43 dcn31_afmt.o
-rw-r--r-- 1 root wheel 53960 Jun 14 00:43 dcn31_apg.o
-rw-r--r-- 1 root wheel 528264 Jun 14 00:43 dcn31_clk_mgr.o
-rw-r--r-- 1 root wheel 481512 Jun 14 00:43 dcn31_dccg.o
-rw-r--r-- 1 root wheel 536680 Jun 14 00:43 dcn31_dio_link_encoder.o
-rw-r--r-- 1 root wheel 461064 Jun 14 00:43 dcn31_fpu.o
-rw-r--r-- 1 root wheel 334072 Jun 14 00:43 dcn31_hpo_dp_link_encoder.o
-rw-r--r-- 1 root wheel 340256 Jun 14 00:43 dcn31_hpo_dp_stream_encoder.o
-rw-r--r-- 1 root wheel 499496 Jun 14 00:43 dcn31_hubbub.o
-rw-r--r-- 1 root wheel 349024 Jun 14 00:43 dcn31_hubp.o
-rw-r--r-- 1 root wheel 546136 Jun 14 00:43 dcn31_hwseq.o
-rw-r--r-- 1 root wheel 439632 Jun 14 00:43 dcn31_init.o
-rw-r--r-- 1 root wheel 339840 Jun 14 00:43 dcn31_optc.o
-rw-r--r-- 1 root wheel 482400 Jun 14 00:43 dcn31_panel_cntl.o
-rw-r--r-- 1 root wheel 1121688 Jun 14 00:43 dcn31_resource.o
-rw-r--r-- 1 root wheel 455408 Jun 14 00:43 dcn31_smu.o
-rw-r--r-- 1 root wheel 298864 Jun 14 00:43 dcn31_vpg.o
-rw-r--r-- 1 root wheel 465272 Jun 14 00:43 dcn321_dio_link_encoder.o
-rw-r--r-- 1 root wheel 461304 Jun 14 00:43 dcn321_fpu.o
-rw-r--r-- 1 root wheel 1182832 Jun 14 00:43 dcn321_resource.o
-rw-r--r-- 1 root wheel 478696 Jun 14 00:43 dcn32_clk_mgr.o
-rw-r--r-- 1 root wheel 442592 Jun 14 00:43 dcn32_clk_mgr_smu_msg.o
-rw-r--r-- 1 root wheel 460432 Jun 14 00:43 dcn32_dccg.o
-rw-r--r-- 1 root wheel 469760 Jun 14 00:43 dcn32_dio_link_encoder.o
-rw-r--r-- 1 root wheel 347824 Jun 14 00:43 dcn32_dio_stream_encoder.o
-rw-r--r-- 1 root wheel 532128 Jun 14 00:43 dcn32_dpp.o
-rw-r--r-- 1 root wheel 548032 Jun 14 00:43 dcn32_fpu.o
-rw-r--r-- 1 root wheel 307608 Jun 14 00:43 dcn32_hpo_dp_link_encoder.o
-rw-r--r-- 1 root wheel 492656 Jun 14 00:43 dcn32_hubbub.o
-rw-r--r-- 1 root wheel 354080 Jun 14 00:43 dcn32_hubp.o
-rw-r--r-- 1 root wheel 584800 Jun 14 00:43 dcn32_hwseq.o
-rw-r--r-- 1 root wheel 440192 Jun 14 00:43 dcn32_init.o
-rw-r--r-- 1 root wheel 455624 Jun 14 00:43 dcn32_mmhubbub.o
-rw-r--r-- 1 root wheel 391984 Jun 14 00:43 dcn32_mpc.o
-rw-r--r-- 1 root wheel 388576 Jun 14 00:43 dcn32_optc.o
-rw-r--r-- 1 root wheel 1212968 Jun 14 00:43 dcn32_resource.o
-rw-r--r-- 1 root wheel 444048 Jun 14 00:43 dcn32_resource_helpers.o
-rw-r--r-- 1 root wheel 138728 Jun 14 00:43 dcn_calc_auto.o
-rw-r--r-- 1 root wheel 19480 Jun 14 00:43 dcn_calc_math.o
-rw-r--r-- 1 root wheel 487368 Jun 14 00:43 dcn_calcs.o
-rw-r--r-- 1 root wheel 48008 Jun 14 00:43 dcphy.o
-rw-r--r-- 1 root wheel 42488 Jun 14 00:43 dead_vnops.o
-rw-r--r-- 1 root wheel 82544 Jun 14 00:43 deflate.o
-rw-r--r-- 1 root wheel 30872 Jun 14 00:43 dest6.o
-rw-r--r-- 1 root wheel 378608 Jun 14 00:43 df_v1_7.o
-rw-r--r-- 1 root wheel 405376 Jun 14 00:43 df_v3_6.o
-rw-r--r-- 1 root wheel 374456 Jun 14 00:43 dimgrey_cavefish_reg_init.o
-rw-r--r-- 1 root wheel 67360 Jun 14 00:43 diskmap.o
-rw-r--r-- 1 root wheel 22624 Jun 14 00:43 disksubr.o
-rw-r--r-- 1 root wheel 116584 Jun 14 00:43 display_mode_lib.o
-rw-r--r-- 1 root wheel 326112 Jun 14 00:43 display_mode_vba.o
-rw-r--r-- 1 root wheel 329632 Jun 14 00:43 display_mode_vba_20.o
-rw-r--r-- 1 root wheel 333824 Jun 14 00:43 display_mode_vba_20v2.o
-rw-r--r-- 1 root wheel 368584 Jun 14 00:43 display_mode_vba_21.o
-rw-r--r-- 1 root wheel 421464 Jun 14 00:43 display_mode_vba_30.o
-rw-r--r-- 1 root wheel 432840 Jun 14 00:43 display_mode_vba_31.o
-rw-r--r-- 1 root wheel 436376 Jun 14 00:43 display_mode_vba_314.o
-rw-r--r-- 1 root wheel 204736 Jun 14 00:43 display_mode_vba_32.o
-rw-r--r-- 1 root wheel 436112 Jun 14 00:43 display_mode_vba_util_32.o
-rw-r--r-- 1 root wheel 203232 Jun 14 00:43 display_rq_dlg_calc_20.o
-rw-r--r-- 1 root wheel 203424 Jun 14 00:43 display_rq_dlg_calc_20v2.o
-rw-r--r-- 1 root wheel 208240 Jun 14 00:43 display_rq_dlg_calc_21.o
-rw-r--r-- 1 root wheel 218208 Jun 14 00:43 display_rq_dlg_calc_30.o
-rw-r--r-- 1 root wheel 217128 Jun 14 00:43 display_rq_dlg_calc_31.o
-rw-r--r-- 1 root wheel 218168 Jun 14 00:43 display_rq_dlg_calc_314.o
-rw-r--r-- 1 root wheel 165984 Jun 14 00:43 display_rq_dlg_calc_32.o
-rw-r--r-- 1 root wheel 116088 Jun 14 00:43 display_rq_dlg_helpers.o
-rw-r--r-- 1 root wheel 36808 Jun 14 00:43 dkcsum.o
-rw-r--r-- 1 root wheel 46168 Jun 14 00:43 dl10019.o
-rw-r--r-- 1 root wheel 63616 Jun 14 00:43 dma-resv.o
-rw-r--r-- 1 root wheel 22216 Jun 14 00:43 dma_alloc.o
-rw-r--r-- 1 root wheel 218256 Jun 14 00:43 dml1_display_rq_dlg_calc.o
-rw-r--r-- 1 root wheel 493656 Jun 14 00:43 dmub_abm.o
-rw-r--r-- 1 root wheel 56912 Jun 14 00:43 dmub_dcn20.o
-rw-r--r-- 1 root wheel 24208 Jun 14 00:43 dmub_dcn21.o
-rw-r--r-- 1 root wheel 31072 Jun 14 00:43 dmub_dcn30.o
-rw-r--r-- 1 root wheel 12032 Jun 14 00:43 dmub_dcn301.o
-rw-r--r-- 1 root wheel 12032 Jun 14 00:43 dmub_dcn302.o
-rw-r--r-- 1 root wheel 12032 Jun 14 00:43 dmub_dcn303.o
-rw-r--r-- 1 root wheel 63784 Jun 14 00:43 dmub_dcn31.o
-rw-r--r-- 1 root wheel 12280 Jun 14 00:43 dmub_dcn315.o
-rw-r--r-- 1 root wheel 12280 Jun 14 00:43 dmub_dcn316.o
-rw-r--r-- 1 root wheel 72504 Jun 14 00:43 dmub_dcn32.o
-rw-r--r-- 1 root wheel 476168 Jun 14 00:43 dmub_hw_lock_mgr.o
-rw-r--r-- 1 root wheel 340184 Jun 14 00:43 dmub_outbox.o
-rw-r--r-- 1 root wheel 496672 Jun 14 00:43 dmub_psr.o
-rw-r--r-- 1 root wheel 22296 Jun 14 00:43 dmub_reg.o
-rw-r--r-- 1 root wheel 129768 Jun 14 00:44 dmub_srv.o
-rw-r--r-- 1 root wheel 21928 Jun 14 00:44 dmub_srv_stat.o
-rw-r--r-- 1 root wheel 77304 Jun 14 00:43 dp8390.o
-rw-r--r-- 1 root wheel 92720 Jun 14 00:43 drm_agpsupport.o
-rw-r--r-- 1 root wheel 84240 Jun 14 00:43 drm_aperture.o
-rw-r--r-- 1 root wheel 220856 Jun 14 00:43 drm_atomic.o
-rw-r--r-- 1 root wheel 332440 Jun 14 00:43 drm_atomic_helper.o
-rw-r--r-- 1 root wheel 164832 Jun 14 00:43 drm_atomic_state_helper.o
-rw-r--r-- 1 root wheel 210376 Jun 14 00:43 drm_atomic_uapi.o
-rw-r--r-- 1 root wheel 118776 Jun 14 00:43 drm_auth.o
-rw-r--r-- 1 root wheel 133656 Jun 14 00:43 drm_blend.o
-rw-r--r-- 1 root wheel 163888 Jun 14 00:43 drm_bridge.o
-rw-r--r-- 1 root wheel 117128 Jun 14 00:43 drm_buddy.o
-rw-r--r-- 1 root wheel 46240 Jun 14 00:43 drm_cache.o
-rw-r--r-- 1 root wheel 155376 Jun 14 00:43 drm_client.o
-rw-r--r-- 1 root wheel 190544 Jun 14 00:43 drm_client_modeset.o
-rw-r--r-- 1 root wheel 149696 Jun 14 00:43 drm_color_mgmt.o
-rw-r--r-- 1 root wheel 262160 Jun 14 00:43 drm_connector.o
-rw-r--r-- 1 root wheel 183768 Jun 14 00:43 drm_crtc.o
-rw-r--r-- 1 root wheel 184600 Jun 14 00:43 drm_crtc_helper.o
-rw-r--r-- 1 root wheel 134032 Jun 14 00:43 drm_damage_helper.o
-rw-r--r-- 1 root wheel 10656 Jun 14 00:43 drm_displayid.o
-rw-r--r-- 1 root wheel 112024 Jun 14 00:43 drm_dp_dual_mode_helper.o
-rw-r--r-- 1 root wheel 301184 Jun 14 00:43 drm_dp_helper.o
-rw-r--r-- 1 root wheel 438120 Jun 14 00:43 drm_dp_mst_topology.o
-rw-r--r-- 1 root wheel 206184 Jun 14 00:43 drm_drv.o
-rw-r--r-- 1 root wheel 17688 Jun 14 00:43 drm_dsc_helper.o
-rw-r--r-- 1 root wheel 102704 Jun 14 00:43 drm_dumb_buffers.o
-rw-r--r-- 1 root wheel 451080 Jun 14 00:43 drm_edid.o
-rw-r--r-- 1 root wheel 146832 Jun 14 00:43 drm_encoder.o
-rw-r--r-- 1 root wheel 119904 Jun 14 00:43 drm_encoder_slave.o
-rw-r--r-- 1 root wheel 206272 Jun 14 00:43 drm_fb_helper.o
-rw-r--r-- 1 root wheel 123080 Jun 14 00:43 drm_file.o
-rw-r--r-- 1 root wheel 62592 Jun 14 00:43 drm_flip_work.o
-rw-r--r-- 1 root wheel 144056 Jun 14 00:43 drm_format_helper.o
-rw-r--r-- 1 root wheel 64200 Jun 14 00:43 drm_fourcc.o
-rw-r--r-- 1 root wheel 195856 Jun 14 00:43 drm_framebuffer.o
-rw-r--r-- 1 root wheel 206032 Jun 14 00:43 drm_gem.o
-rw-r--r-- 1 root wheel 65856 Jun 14 00:43 drm_gem_atomic_helper.o
-rw-r--r-- 1 root wheel 60616 Jun 14 00:43 drm_gem_framebuffer_helper.o
-rw-r--r-- 1 root wheel 61752 Jun 14 00:43 drm_gem_ttm_helper.o
-rw-r--r-- 1 root wheel 14984 Jun 14 00:43 drm_hashtab.o
-rw-r--r-- 1 root wheel 97184 Jun 14 00:43 drm_hdcp_helper.o
-rw-r--r-- 1 root wheel 35864 Jun 14 00:43 drm_hdmi_helper.o
-rw-r--r-- 1 root wheel 171296 Jun 14 00:43 drm_ioctl.o
-rw-r--r-- 1 root wheel 576 Jun 14 00:43 drm_kms_helper_common.o
-rw-r--r-- 1 root wheel 447928 Jun 14 00:43 drm_linux.o
-rw-r--r-- 1 root wheel 64016 Jun 14 00:43 drm_managed.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 drm_memory.o
-rw-r--r-- 1 root wheel 56088 Jun 14 00:43 drm_mipi_dsi.o
-rw-r--r-- 1 root wheel 49080 Jun 14 00:43 drm_mm.o
-rw-r--r-- 1 root wheel 160408 Jun 14 00:43 drm_mode_config.o
-rw-r--r-- 1 root wheel 169600 Jun 14 00:43 drm_mode_object.o
-rw-r--r-- 1 root wheel 173776 Jun 14 00:43 drm_modes.o
-rw-r--r-- 1 root wheel 133728 Jun 14 00:43 drm_modeset_helper.o
-rw-r--r-- 1 root wheel 143904 Jun 14 00:43 drm_modeset_lock.o
-rw-r--r-- 1 root wheel 5896 Jun 14 00:43 drm_mtrr.o
-rw-r--r-- 1 root wheel 123696 Jun 14 00:43 drm_panel.o
-rw-r--r-- 1 root wheel 24616 Jun 14 00:43 drm_panel_orientation_quirks.o
-rw-r--r-- 1 root wheel 94552 Jun 14 00:43 drm_pci.o
-rw-r--r-- 1 root wheel 212664 Jun 14 00:43 drm_plane.o
-rw-r--r-- 1 root wheel 141040 Jun 14 00:43 drm_plane_helper.o
-rw-r--r-- 1 root wheel 140160 Jun 14 00:43 drm_prime.o
-rw-r--r-- 1 root wheel 27936 Jun 14 00:43 drm_print.o
-rw-r--r-- 1 root wheel 183488 Jun 14 00:43 drm_probe_helper.o
-rw-r--r-- 1 root wheel 150776 Jun 14 00:43 drm_property.o
-rw-r--r-- 1 root wheel 20664 Jun 14 00:43 drm_rect.o
-rw-r--r-- 1 root wheel 18752 Jun 14 00:43 drm_scdc_helper.o
-rw-r--r-- 1 root wheel 132832 Jun 14 00:43 drm_self_refresh_helper.o
-rw-r--r-- 1 root wheel 202232 Jun 14 00:43 drm_syncobj.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 drm_trace_points.o
-rw-r--r-- 1 root wheel 267168 Jun 14 00:43 drm_vblank.o
-rw-r--r-- 1 root wheel 134944 Jun 14 00:43 drm_vblank_work.o
-rw-r--r-- 1 root wheel 20736 Jun 14 00:43 drm_vma_manager.o
-rw-r--r-- 1 root wheel 16968 Jun 14 00:44 ds1631.o
-rw-r--r-- 1 root wheel 391296 Jun 14 00:44 dsdt.o
-rw-r--r-- 1 root wheel 90920 Jun 14 00:43 dt_dev.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 dt_prov_kprobe.o
-rw-r--r-- 1 root wheel 33320 Jun 14 00:43 dt_prov_profile.o
-rw-r--r-- 1 root wheel 28312 Jun 14 00:43 dt_prov_static.o
-rw-r--r-- 1 root wheel 20280 Jun 14 00:43 dt_prov_syscall.o
-rw-r--r-- 1 root wheel 32432 Jun 14 00:43 dvo_ch7017.o
-rw-r--r-- 1 root wheel 35896 Jun 14 00:43 dvo_ch7xxx.o
-rw-r--r-- 1 root wheel 46640 Jun 14 00:43 dvo_ivch.o
-rw-r--r-- 1 root wheel 54264 Jun 14 00:43 dvo_ns2501.o
-rw-r--r-- 1 root wheel 29136 Jun 14 00:43 dvo_sil164.o
-rw-r--r-- 1 root wheel 38536 Jun 14 00:43 dvo_tfp410.o
-rw-r--r-- 1 root wheel 75632 Jun 14 00:43 dwiic.o
-rw-r--r-- 1 root wheel 79680 Jun 14 00:44 dwiic_acpi.o
-rw-r--r-- 1 root wheel 52776 Jun 14 00:43 dwiic_pci.o
-rw-r--r-- 1 root wheel 119032 Jun 14 00:43 eap.o
-rw-r--r-- 1 root wheel 6160 Jun 14 00:43 ecb3_enc.o
-rw-r--r-- 1 root wheel 8432 Jun 14 00:43 ecb_enc.o
-rw-r--r-- 1 root wheel 38544 Jun 14 00:43 edid.o
-rw-r--r-- 1 root wheel 37256 Jun 14 00:43 eephy.o
-rw-r--r-- 1 root wheel 28232 Jun 14 00:44 efi.o
-rw-r--r-- 1 root wheel 80712 Jun 14 00:44 efi_machdep.o
-rw-r--r-- 1 root wheel 59696 Jun 14 00:43 efifb.o
-rw-r--r-- 1 root wheel 188768 Jun 14 00:43 ehci.o
-rw-r--r-- 1 root wheel 43096 Jun 14 00:44 ehci_cardbus.o
-rw-r--r-- 1 root wheel 45312 Jun 14 00:43 ehci_pci.o
-rw-r--r-- 1 root wheel 116760 Jun 14 00:43 elink3.o
-rw-r--r-- 1 root wheel 367944 Jun 14 00:43 emu_soc.o
-rw-r--r-- 1 root wheel 179432 Jun 14 00:43 emuxki.o
-rw-r--r-- 1 root wheel 278000 Jun 14 00:43 envy.o
-rw-r--r-- 1 root wheel 40072 Jun 14 00:43 est.o
-rw-r--r-- 1 root wheel 35688 Jun 14 00:43 etphy.o
-rw-r--r-- 1 root wheel 628616 Jun 14 00:43 evergreen.o
-rw-r--r-- 1 root wheel 390152 Jun 14 00:43 evergreen_cs.o
-rw-r--r-- 1 root wheel 228320 Jun 14 00:43 evergreen_dma.o
-rw-r--r-- 1 root wheel 273712 Jun 14 00:43 evergreen_hdmi.o
-rw-r--r-- 1 root wheel 7112 Jun 14 00:43 exec_conf.o
-rw-r--r-- 1 root wheel 129016 Jun 14 00:43 exec_elf.o
-rw-r--r-- 1 root wheel 70704 Jun 14 00:43 exec_script.o
-rw-r--r-- 1 root wheel 74768 Jun 14 00:43 exec_subr.o
-rw-r--r-- 1 root wheel 31464 Jun 14 00:43 exphy.o
-rw-r--r-- 1 root wheel 4032 Jun 14 00:43 explicit_bzero.o
-rw-r--r-- 1 root wheel 74072 Jun 14 00:43 ext2fs_alloc.o
-rw-r--r-- 1 root wheel 48240 Jun 14 00:43 ext2fs_balloc.o
-rw-r--r-- 1 root wheel 85304 Jun 14 00:43 ext2fs_bmap.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 ext2fs_bswap.o
-rw-r--r-- 1 root wheel 52624 Jun 14 00:43 ext2fs_extents.o
-rw-r--r-- 1 root wheel 106920 Jun 14 00:43 ext2fs_inode.o
-rw-r--r-- 1 root wheel 99952 Jun 14 00:43 ext2fs_lookup.o
-rw-r--r-- 1 root wheel 64016 Jun 14 00:43 ext2fs_readwrite.o
-rw-r--r-- 1 root wheel 55304 Jun 14 00:43 ext2fs_subr.o
-rw-r--r-- 1 root wheel 142688 Jun 14 00:43 ext2fs_vfsops.o
-rw-r--r-- 1 root wheel 137776 Jun 14 00:43 ext2fs_vnops.o
-rw-r--r-- 1 root wheel 85040 Jun 14 00:44 fd.o
-rw-r--r-- 1 root wheel 38248 Jun 14 00:44 fdc.o
-rw-r--r-- 1 root wheel 744 Jun 14 00:43 ffs.o
-rw-r--r-- 1 root wheel 125216 Jun 14 00:43 ffs_alloc.o
-rw-r--r-- 1 root wheel 110568 Jun 14 00:43 ffs_balloc.o
-rw-r--r-- 1 root wheel 103016 Jun 14 00:43 ffs_inode.o
-rw-r--r-- 1 root wheel 339976 Jun 14 00:43 ffs_softdep.o
-rw-r--r-- 1 root wheel 568 Jun 14 00:43 ffs_softdep_stub.o
-rw-r--r-- 1 root wheel 60064 Jun 14 00:43 ffs_subr.o
-rw-r--r-- 1 root wheel 3208 Jun 14 00:43 ffs_tables.o
-rw-r--r-- 1 root wheel 156384 Jun 14 00:43 ffs_vfsops.o
-rw-r--r-- 1 root wheel 73328 Jun 14 00:43 ffs_vnops.o
-rw-r--r-- 1 root wheel 63872 Jun 14 00:44 fido.o
-rw-r--r-- 1 root wheel 70880 Jun 14 00:43 fifo_vnops.o
-rw-r--r-- 1 root wheel 51288 Jun 14 00:44 fiji_baco.o
-rw-r--r-- 1 root wheel 546296 Jun 14 00:44 fiji_smumgr.o
-rw-r--r-- 1 root wheel 60904 Jun 14 00:43 firmload.o
-rw-r--r-- 1 root wheel 47832 Jun 14 00:43 fixpt31_32.o
-rw-r--r-- 1 root wheel 3056 Jun 14 00:43 fls.o
-rw-r--r-- 1 root wheel 3160 Jun 14 00:43 flsl.o
-rw-r--r-- 1 root wheel 45184 Jun 14 00:43 fpu.o
-rw-r--r-- 1 root wheel 82784 Jun 14 00:43 fq_codel.o
-rw-r--r-- 1 root wheel 61504 Jun 14 00:43 frag6.o
-rw-r--r-- 1 root wheel 482368 Jun 14 00:44 freesync.o
-rw-r--r-- 1 root wheel 61408 Jun 14 00:43 fuse_device.o
-rw-r--r-- 1 root wheel 40680 Jun 14 00:43 fuse_file.o
-rw-r--r-- 1 root wheel 51544 Jun 14 00:43 fuse_lookup.o
-rw-r--r-- 1 root wheel 102992 Jun 14 00:43 fuse_vfsops.o
-rw-r--r-- 1 root wheel 156072 Jun 14 00:43 fuse_vnops.o
-rw-r--r-- 1 root wheel 61144 Jun 14 00:43 fusebuf.o
-rw-r--r-- 1 root wheel 118216 Jun 14 00:43 fxp.o
-rw-r--r-- 1 root wheel 446088 Jun 14 00:43 g4x_dp.o
-rw-r--r-- 1 root wheel 392440 Jun 14 00:43 g4x_hdmi.o
-rw-r----- 1 root wheel 16120 Jun 14 00:44 gap.o
-rw-r--r-- 1 root wheel 632 Jun 14 00:43 gapdummy.o
-rw-r--r-- 1 root wheel 32344 Jun 14 00:43 gdt.o
-rw-r--r-- 1 root wheel 97944 Jun 14 00:43 gdt_common.o
-rw-r--r-- 1 root wheel 54800 Jun 14 00:43 gdt_pci.o
-rw-r--r-- 1 root wheel 114768 Jun 14 00:43 gem.o
-rw-r--r-- 1 root wheel 247672 Jun 14 00:43 gen2_engine_cs.o
-rw-r--r-- 1 root wheel 186536 Jun 14 00:43 gen6_engine_cs.o
-rw-r--r-- 1 root wheel 264912 Jun 14 00:43 gen6_ppgtt.o
-rw-r--r-- 1 root wheel 3864 Jun 14 00:43 gen6_renderstate.o
-rw-r--r-- 1 root wheel 243872 Jun 14 00:43 gen7_renderclear.o
-rw-r--r-- 1 root wheel 3696 Jun 14 00:43 gen7_renderstate.o
-rw-r--r-- 1 root wheel 273224 Jun 14 00:43 gen8_engine_cs.o
-rw-r--r-- 1 root wheel 296272 Jun 14 00:43 gen8_ppgtt.o
-rw-r--r-- 1 root wheel 6528 Jun 14 00:43 gen8_renderstate.o
-rw-r--r-- 1 root wheel 6592 Jun 14 00:43 gen9_renderstate.o
-rw-r--r-- 1 root wheel 32768 Jun 14 00:43 gentbi.o
-rw-r--r-- 1 root wheel 4696 Jun 14 00:43 getsn.o
-rw-r--r-- 1 root wheel 897272 Jun 14 00:43 gfx_v10_0.o
-rw-r--r-- 1 root wheel 843160 Jun 14 00:43 gfx_v11_0.o
-rw-r--r-- 1 root wheel 713024 Jun 14 00:43 gfx_v8_0.o
-rw-r--r-- 1 root wheel 796368 Jun 14 00:43 gfx_v9_0.o
-rw-r--r-- 1 root wheel 409288 Jun 14 00:43 gfx_v9_4.o
-rw-r--r-- 1 root wheel 460152 Jun 14 00:43 gfx_v9_4_2.o
-rw-r--r-- 1 root wheel 391736 Jun 14 00:43 gfxhub_v1_0.o
-rw-r--r-- 1 root wheel 371296 Jun 14 00:43 gfxhub_v1_1.o
-rw-r--r-- 1 root wheel 394008 Jun 14 00:43 gfxhub_v2_0.o
-rw-r--r-- 1 root wheel 411688 Jun 14 00:43 gfxhub_v2_1.o
-rw-r--r-- 1 root wheel 395640 Jun 14 00:43 gfxhub_v3_0.o
-rw-r--r-- 1 root wheel 394528 Jun 14 00:43 gfxhub_v3_0_3.o
-rw-r--r-- 1 root wheel 54328 Jun 14 00:44 glkgpio.o
-rw-r--r-- 1 root wheel 14680 Jun 14 00:43 gmac.o
-rw-r--r-- 1 root wheel 428536 Jun 14 00:43 gmc_v10_0.o
-rw-r--r-- 1 root wheel 419248 Jun 14 00:43 gmc_v11_0.o
-rw-r--r-- 1 root wheel 429200 Jun 14 00:43 gmc_v7_0.o
-rw-r--r-- 1 root wheel 439736 Jun 14 00:43 gmc_v8_0.o
-rw-r--r-- 1 root wheel 466896 Jun 14 00:43 gmc_v9_0.o
-rw-r--r-- 1 root wheel 43904 Jun 14 00:44 gpio.o
-rw-r--r-- 1 root wheel 37000 Jun 14 00:43 gpio_base.o
-rw-r--r-- 1 root wheel 62144 Jun 14 00:43 gpio_service.o
-rw-r--r-- 1 root wheel 440184 Jun 14 00:44 hardwaremanager.o
-rw-r--r-- 1 root wheel 439984 Jun 14 00:43 hdcp_msg.o
-rw-r--r-- 1 root wheel 139048 Jun 14 00:43 hdmi.o
-rw-r--r-- 1 root wheel 379800 Jun 14 00:43 hdp_v4_0.o
-rw-r--r-- 1 root wheel 378104 Jun 14 00:43 hdp_v5_0.o
-rw-r--r-- 1 root wheel 375784 Jun 14 00:43 hdp_v5_2.o
-rw-r--r-- 1 root wheel 374408 Jun 14 00:43 hdp_v6_0.o
-rw-r--r-- 1 root wheel 148704 Jun 14 00:43 hfsc.o
-rw-r--r-- 1 root wheel 52192 Jun 14 00:43 hibernate_machdep.o
-rw-r--r-- 1 root wheel 32808 Jun 14 00:44 hid.o
-rw-r--r-- 1 root wheel 54448 Jun 14 00:44 hidcc.o
-rw-r--r-- 1 root wheel 54832 Jun 14 00:44 hidkbd.o
-rw-r--r-- 1 root wheel 24912 Jun 14 00:44 hidms.o
-rw-r--r-- 1 root wheel 35448 Jun 14 00:44 hidmt.o
-rw-r--r-- 1 root wheel 16336 Jun 14 00:43 hmac.o
-rw-r--r-- 1 root wheel 87136 Jun 14 00:44 hme.o
-rw-r--r-- 1 root wheel 23600 Jun 14 00:43 hotplug.o
-rw-r--r-- 1 root wheel 362496 Jun 14 00:43 hsw_ips.o
-rw-r--r-- 1 root wheel 792 Jun 14 00:43 htonl.o
-rw-r--r-- 1 root wheel 792 Jun 14 00:43 htons.o
-rw-r--r-- 1 root wheel 79880 Jun 14 00:43 hvs.o
-rw-r--r-- 1 root wheel 27592 Jun 14 00:43 hw_ddc.o
-rw-r--r-- 1 root wheel 11768 Jun 14 00:43 hw_factory.o
-rw-r--r-- 1 root wheel 22456 Jun 14 00:43 hw_factory_dce110.o
-rw-r--r-- 1 root wheel 22456 Jun 14 00:43 hw_factory_dce120.o
-rw-r--r-- 1 root wheel 22432 Jun 14 00:43 hw_factory_dce80.o
-rw-r--r-- 1 root wheel 23944 Jun 14 00:43 hw_factory_dcn10.o
-rw-r--r-- 1 root wheel 24320 Jun 14 00:43 hw_factory_dcn20.o
-rw-r--r-- 1 root wheel 23952 Jun 14 00:43 hw_factory_dcn21.o
-rw-r--r-- 1 root wheel 24328 Jun 14 00:43 hw_factory_dcn30.o
-rw-r--r-- 1 root wheel 24160 Jun 14 00:43 hw_factory_dcn315.o
-rw-r--r-- 1 root wheel 24288 Jun 14 00:43 hw_factory_dcn32.o
-rw-r--r-- 1 root wheel 21552 Jun 14 00:43 hw_generic.o
-rw-r--r-- 1 root wheel 22056 Jun 14 00:43 hw_gpio.o
-rw-r--r-- 1 root wheel 23056 Jun 14 00:43 hw_hpd.o
-rw-r--r-- 1 root wheel 9632 Jun 14 00:43 hw_translate.o
-rw-r--r-- 1 root wheel 16784 Jun 14 00:43 hw_translate_dce110.o
-rw-r--r-- 1 root wheel 16896 Jun 14 00:43 hw_translate_dce120.o
-rw-r--r-- 1 root wheel 21864 Jun 14 00:43 hw_translate_dce80.o
-rw-r--r-- 1 root wheel 16792 Jun 14 00:43 hw_translate_dcn10.o
-rw-r--r-- 1 root wheel 16448 Jun 14 00:43 hw_translate_dcn20.o
-rw-r--r-- 1 root wheel 16304 Jun 14 00:43 hw_translate_dcn21.o
-rw-r--r-- 1 root wheel 16456 Jun 14 00:43 hw_translate_dcn30.o
-rw-r--r-- 1 root wheel 16320 Jun 14 00:43 hw_translate_dcn315.o
-rw-r--r-- 1 root wheel 16176 Jun 14 00:43 hw_translate_dcn32.o
-rw-r--r-- 1 root wheel 430456 Jun 14 00:44 hwmgr.o
-rw-r--r-- 1 root wheel 180104 Jun 14 00:43 hyperv.o
-rw-r--r-- 1 root wheel 133336 Jun 14 00:43 hypervic.o
-rw-r--r-- 1 root wheel 15776 Jun 14 00:44 i2c.o
-rw-r--r-- 1 root wheel 17848 Jun 14 00:44 i2c_bitbang.o
-rw-r--r-- 1 root wheel 14176 Jun 14 00:44 i2c_exec.o
-rw-r--r-- 1 root wheel 304464 Jun 14 00:44 i2c_scan.o
-rw-r--r-- 1 root wheel 28832 Jun 14 00:43 i8259.o
-rw-r--r-- 1 root wheel 318048 Jun 14 00:43 i915_active.o
-rw-r--r-- 1 root wheel 286088 Jun 14 00:43 i915_cmd_parser.o
-rw-r--r-- 1 root wheel 225136 Jun 14 00:43 i915_config.o
-rw-r--r-- 1 root wheel 63192 Jun 14 00:43 i915_deps.o
-rw-r--r-- 1 root wheel 466976 Jun 14 00:43 i915_driver.o
-rw-r--r-- 1 root wheel 230152 Jun 14 00:43 i915_drm_client.o
-rw-r--r-- 1 root wheel 329392 Jun 14 00:43 i915_gem.o
-rw-r--r-- 1 root wheel 175472 Jun 14 00:43 i915_gem_busy.o
-rw-r--r-- 1 root wheel 235192 Jun 14 00:43 i915_gem_clflush.o
-rw-r--r-- 1 root wheel 393888 Jun 14 00:43 i915_gem_context.o
-rw-r--r-- 1 root wheel 258672 Jun 14 00:43 i915_gem_create.o
-rw-r--r-- 1 root wheel 229064 Jun 14 00:43 i915_gem_dmabuf.o
-rw-r--r-- 1 root wheel 272704 Jun 14 00:43 i915_gem_domain.o
-rw-r--r-- 1 root wheel 265352 Jun 14 00:43 i915_gem_evict.o
-rw-r--r-- 1 root wheel 402112 Jun 14 00:43 i915_gem_execbuffer.o
-rw-r--r-- 1 root wheel 233584 Jun 14 00:43 i915_gem_gtt.o
-rw-r--r-- 1 root wheel 237728 Jun 14 00:43 i915_gem_internal.o
-rw-r--r-- 1 root wheel 233024 Jun 14 00:43 i915_gem_lmem.o
-rw-r--r-- 1 root wheel 294216 Jun 14 00:43 i915_gem_mman.o
-rw-r--r-- 1 root wheel 281696 Jun 14 00:43 i915_gem_object.o
-rw-r--r-- 1 root wheel 275064 Jun 14 00:43 i915_gem_pages.o
-rw-r--r-- 1 root wheel 243560 Jun 14 00:43 i915_gem_phys.o
-rw-r--r-- 1 root wheel 238200 Jun 14 00:43 i915_gem_pm.o
-rw-r--r-- 1 root wheel 243592 Jun 14 00:43 i915_gem_region.o
-rw-r--r-- 1 root wheel 262760 Jun 14 00:43 i915_gem_shmem.o
-rw-r--r-- 1 root wheel 261560 Jun 14 00:43 i915_gem_shrinker.o
-rw-r--r-- 1 root wheel 274712 Jun 14 00:43 i915_gem_stolen.o
-rw-r--r-- 1 root wheel 233552 Jun 14 00:43 i915_gem_throttle.o
-rw-r--r-- 1 root wheel 253848 Jun 14 00:43 i915_gem_tiling.o
-rw-r--r-- 1 root wheel 288688 Jun 14 00:43 i915_gem_ttm.o
-rw-r--r-- 1 root wheel 273136 Jun 14 00:43 i915_gem_ttm_move.o
-rw-r--r-- 1 root wheel 246824 Jun 14 00:43 i915_gem_ttm_pm.o
-rw-r--r-- 1 root wheel 227624 Jun 14 00:43 i915_gem_userptr.o
-rw-r--r-- 1 root wheel 184280 Jun 14 00:43 i915_gem_wait.o
-rw-r--r-- 1 root wheel 122040 Jun 14 00:43 i915_gem_ww.o
-rw-r--r-- 1 root wheel 224640 Jun 14 00:43 i915_gemfs.o
-rw-r--r-- 1 root wheel 231680 Jun 14 00:43 i915_getparam.o
-rw-r--r-- 1 root wheel 311248 Jun 14 00:43 i915_gpu_error.o
-rw-r--r-- 1 root wheel 228368 Jun 14 00:43 i915_ioctl.o
-rw-r--r-- 1 root wheel 690600 Jun 14 00:43 i915_irq.o
-rw-r--r-- 1 root wheel 9320 Jun 14 00:43 i915_memcpy.o
-rw-r--r-- 1 root wheel 3344 Jun 14 00:43 i915_mitigations.o
-rw-r--r-- 1 root wheel 560 Jun 14 00:43 i915_mm.o
-rw-r--r-- 1 root wheel 11760 Jun 14 00:43 i915_module.o
-rw-r--r-- 1 root wheel 114360 Jun 14 00:43 i915_params.o
-rw-r--r-- 1 root wheel 49152 Jun 14 00:43 i915_pci.o
-rw-r--r-- 1 root wheel 372888 Jun 14 00:43 i915_perf.o
-rw-r--r-- 1 root wheel 266568 Jun 14 00:43 i915_query.o
-rw-r--r-- 1 root wheel 353576 Jun 14 00:43 i915_request.o
-rw-r--r-- 1 root wheel 34952 Jun 14 00:43 i915_scatterlist.o
-rw-r--r-- 1 root wheel 263480 Jun 14 00:43 i915_scheduler.o
-rw-r--r-- 1 root wheel 234872 Jun 14 00:43 i915_suspend.o
-rw-r--r-- 1 root wheel 52384 Jun 14 00:43 i915_sw_fence.o
-rw-r--r-- 1 root wheel 16536 Jun 14 00:43 i915_sw_fence_work.o
-rw-r--r-- 1 root wheel 225344 Jun 14 00:43 i915_switcheroo.o
-rw-r--r-- 1 root wheel 17976 Jun 14 00:43 i915_syncmap.o
-rw-r--r-- 1 root wheel 226152 Jun 14 00:43 i915_sysfs.o
-rw-r--r-- 1 root wheel 124688 Jun 14 00:43 i915_ttm_buddy_manager.o
-rw-r--r-- 1 root wheel 6848 Jun 14 00:43 i915_user_extensions.o
-rw-r--r-- 1 root wheel 231096 Jun 14 00:43 i915_utils.o
-rw-r--r-- 1 root wheel 241800 Jun 14 00:43 i915_vgpu.o
-rw-r--r-- 1 root wheel 374856 Jun 14 00:43 i915_vma.o
-rw-r--r-- 1 root wheel 252816 Jun 14 00:43 i915_vma_resource.o
-rw-r--r-- 1 root wheel 417032 Jun 14 00:43 i9xx_plane.o
-rw-r--r-- 1 root wheel 51216 Jun 14 00:44 iatp.o
-rw-r--r-- 1 root wheel 19464 Jun 14 00:44 icc.o
-rw-r--r-- 1 root wheel 389504 Jun 14 00:43 iceland_ih.o
-rw-r--r-- 1 root wheel 539800 Jun 14 00:44 iceland_smumgr.o
-rw-r--r-- 1 root wheel 30296 Jun 14 00:43 ichiic.o
-rw-r--r-- 1 root wheel 523912 Jun 14 00:43 icl_dsi.o
-rw-r--r-- 1 root wheel 155816 Jun 14 00:43 icmp6.o
-rw-r--r-- 1 root wheel 33640 Jun 14 00:43 icsphy.o
-rw-r--r-- 1 root wheel 83512 Jun 14 00:43 identcpu.o
-rw-r--r-- 1 root wheel 9952 Jun 14 00:43 idgen.o
-rw-r--r-- 1 root wheel 100616 Jun 14 00:43 ieee80211.o
-rw-r--r-- 1 root wheel 47088 Jun 14 00:43 ieee80211_amrr.o
-rw-r--r-- 1 root wheel 92288 Jun 14 00:43 ieee80211_crypto.o
-rw-r--r-- 1 root wheel 61768 Jun 14 00:43 ieee80211_crypto_bip.o
-rw-r--r-- 1 root wheel 70176 Jun 14 00:43 ieee80211_crypto_ccmp.o
-rw-r--r-- 1 root wheel 79504 Jun 14 00:43 ieee80211_crypto_tkip.o
-rw-r--r-- 1 root wheel 57936 Jun 14 00:43 ieee80211_crypto_wep.o
-rw-r--r-- 1 root wheel 179160 Jun 14 00:43 ieee80211_input.o
-rw-r--r-- 1 root wheel 98376 Jun 14 00:43 ieee80211_ioctl.o
-rw-r--r-- 1 root wheel 222896 Jun 14 00:43 ieee80211_node.o
-rw-r--r-- 1 root wheel 168792 Jun 14 00:43 ieee80211_output.o
-rw-r--r-- 1 root wheel 82864 Jun 14 00:43 ieee80211_pae_input.o
-rw-r--r-- 1 root wheel 90088 Jun 14 00:43 ieee80211_pae_output.o
-rw-r--r-- 1 root wheel 116440 Jun 14 00:43 ieee80211_proto.o
-rw-r--r-- 1 root wheel 92280 Jun 14 00:43 ieee80211_ra.o
-rw-r--r-- 1 root wheel 96120 Jun 14 00:43 ieee80211_ra_vht.o
-rw-r--r-- 1 root wheel 33888 Jun 14 00:43 ieee80211_regdomain.o
-rw-r--r-- 1 root wheel 52968 Jun 14 00:43 ieee80211_rssadapt.o
-rw-r--r-- 1 root wheel 258296 Jun 14 00:43 if.o
-rw-r--r-- 1 root wheel 79552 Jun 14 00:44 if_acx_cardbus.o
-rw-r--r-- 1 root wheel 69608 Jun 14 00:43 if_acx_pci.o
-rw-r--r-- 1 root wheel 131696 Jun 14 00:43 if_age.o
-rw-r--r-- 1 root wheel 166656 Jun 14 00:43 if_aggr.o
-rw-r--r-- 1 root wheel 188416 Jun 14 00:43 if_alc.o
-rw-r--r-- 1 root wheel 125416 Jun 14 00:43 if_ale.o
-rw-r--r-- 1 root wheel 70192 Jun 14 00:43 if_an_pci.o
-rw-r--r-- 1 root wheel 72944 Jun 14 00:44 if_an_pcmcia.o
-rw-r--r-- 1 root wheel 219184 Jun 14 00:43 if_aq_pci.o
-rw-r--r-- 1 root wheel 98304 Jun 14 00:44 if_ath_cardbus.o
-rw-r--r-- 1 root wheel 91336 Jun 14 00:43 if_ath_pci.o
-rw-r--r-- 1 root wheel 86016 Jun 14 00:44 if_athn_cardbus.o
-rw-r--r-- 1 root wheel 83064 Jun 14 00:43 if_athn_pci.o
-rw-r--r-- 1 root wheel 226512 Jun 14 00:44 if_athn_usb.o
-rw-r--r-- 1 root wheel 164440 Jun 14 00:44 if_atu.o
-rw-r--r-- 1 root wheel 76568 Jun 14 00:44 if_atw_cardbus.o
-rw-r--r-- 1 root wheel 70976 Jun 14 00:43 if_atw_pci.o
-rw-r--r-- 1 root wheel 114456 Jun 14 00:44 if_aue.o
-rw-r--r-- 1 root wheel 113344 Jun 14 00:44 if_axe.o
-rw-r--r-- 1 root wheel 112304 Jun 14 00:44 if_axen.o
-rw-r--r-- 1 root wheel 89784 Jun 14 00:43 if_bce.o
-rw-r--r-- 1 root wheel 228496 Jun 14 00:43 if_bge.o