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
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905 | [ 0.125882] calling mvebu_system_controller_init+0x0/0x6c @ 1
[ 0.126090] initcall mvebu_system_controller_init+0x0/0x6c returned 0 after 0 usecs
[ 0.126103] calling mvebu_soc_id_init+0x0/0x184 @ 1
[ 0.126312] initcall mvebu_soc_id_init+0x0/0x184 returned 0 after 0 usecs
[ 0.126326] calling mvebu_cpu_reset_init+0x0/0x140 @ 1
[ 0.126475] initcall mvebu_cpu_reset_init+0x0/0x140 returned -19 after 0 usecs
[ 0.126489] calling mvebu_v7_pmsu_init+0x0/0x154 @ 1
[ 0.126691] initcall mvebu_v7_pmsu_init+0x0/0x154 returned 0 after 0 usecs
[ 0.126707] calling __omap4_sar_ram_init+0x0/0x78 @ 1
[ 0.126718] initcall __omap4_sar_ram_init+0x0/0x78 returned -12 after 0 usecs
[ 0.126738] calling __omap4430_phy_power_down+0x0/0x6c @ 1
[ 0.126749] initcall __omap4430_phy_power_down+0x0/0x6c returned 0 after 0 usecs
[ 0.126767] calling dcscb_init+0x0/0x148 @ 1
[ 0.126864] initcall dcscb_init+0x0/0x148 returned -19 after 0 usecs
[ 0.126879] calling tc2_pm_init+0x0/0x1a4 @ 1
[ 0.126964] initcall tc2_pm_init+0x0/0x1a4 returned -19 after 0 usecs
[ 0.126978] calling spawn_ksoftirqd+0x0/0x30 @ 1
[ 0.127221] initcall spawn_ksoftirqd+0x0/0x30 returned 0 after 0 usecs
[ 0.127320] calling init_workqueues+0x0/0x3d8 @ 1
[ 0.127780] initcall init_workqueues+0x0/0x3d8 returned 0 after 0 usecs
[ 0.127804] calling migration_init+0x0/0x78 @ 1
[ 0.127820] initcall migration_init+0x0/0x78 returned 0 after 0 usecs
[ 0.127837] calling check_cpu_stall_init+0x0/0x28 @ 1
[ 0.127849] initcall check_cpu_stall_init+0x0/0x28 returned 0 after 0 usecs
[ 0.127863] calling rcu_register_oom_notifier+0x0/0x20 @ 1
[ 0.127874] initcall rcu_register_oom_notifier+0x0/0x20 returned 0 after 0 usecs
[ 0.127888] calling rcu_spawn_gp_kthread+0x0/0xa4 @ 1
[ 0.128071] initcall rcu_spawn_gp_kthread+0x0/0xa4 returned 0 after 0 usecs
[ 0.128092] calling cpu_stop_init+0x0/0x9c @ 1
[ 0.128214] initcall cpu_stop_init+0x0/0x9c returned 0 after 0 usecs
[ 0.128246] calling relay_init+0x0/0x20 @ 1
[ 0.128259] initcall relay_init+0x0/0x20 returned 0 after 0 usecs
[ 0.128275] calling init_events+0x0/0x74 @ 1
[ 0.128312] initcall init_events+0x0/0x74 returned 0 after 0 usecs
[ 0.128328] calling init_trace_printk+0x0/0x1c @ 1
[ 0.128340] initcall init_trace_printk+0x0/0x1c returned 0 after 0 usecs
[ 0.128354] calling event_trace_enable_again+0x0/0x64 @ 1
[ 0.128366] initcall event_trace_enable_again+0x0/0x64 returned 0 after 0 usecs
[ 0.128381] calling jump_label_init_module+0x0/0x1c @ 1
[ 0.128391] initcall jump_label_init_module+0x0/0x1c returned 0 after 0 usecs
[ 0.128405] calling dynamic_debug_init+0x0/0x2a4 @ 1
[ 0.131642] initcall dynamic_debug_init+0x0/0x2a4 returned 0 after 3906 usecs
[ 0.131671] calling cci_init+0x0/0x30 @ 1
[ 0.131682] initcall cci_init+0x0/0x30 returned -19 after 0 usecs
[ 0.131707] calling tegra_init_fuse+0x0/0x130 @ 1
[ 0.131731] initcall tegra_init_fuse+0x0/0x130 returned 0 after 0 usecs
[ 0.131747] calling tegra_pmc_early_init+0x0/0x168 @ 1
[ 0.131763] initcall tegra_pmc_early_init+0x0/0x168 returned 0 after 0 usecs
[ 0.131781] calling rand_initialize+0x0/0x3c @ 1
[ 0.131904] initcall rand_initialize+0x0/0x3c returned 0 after 0 usecs
[ 0.131924] calling dummy_timer_register+0x0/0x54 @ 1
[ 0.131942] initcall dummy_timer_register+0x0/0x54 returned 0 after 0 usecs
[ 0.132204] Brought up 1 CPUs
[ 0.132218] SMP: Total of 1 processors activated (995.32 BogoMIPS).
[ 0.132225] CPU: All CPU(s) started in SVC mode.
[ 0.133095] devtmpfs: initialized
[ 0.133773] calling tegra_hotplug_init+0x0/0x90 @ 1
[ 0.133800] initcall tegra_hotplug_init+0x0/0x90 returned 0 after 0 usecs
[ 0.133823] calling ipc_ns_init+0x0/0x44 @ 1
[ 0.133834] initcall ipc_ns_init+0x0/0x44 returned 0 after 0 usecs
[ 0.133848] calling init_mmap_min_addr+0x0/0x2c @ 1
[ 0.133859] initcall init_mmap_min_addr+0x0/0x2c returned 0 after 0 usecs
[ 0.133876] calling evm_display_config+0x0/0x38 @ 1
[ 0.133883] evm: security.selinux
[ 0.133888] evm: security.SMACK64
[ 0.133894] evm: security.SMACK64EXEC
[ 0.133899] evm: security.SMACK64TRANSMUTE
[ 0.133904] evm: security.SMACK64MMAP
[ 0.133909] evm: security.ima
[ 0.133915] evm: security.capability
[ 0.133924] initcall evm_display_config+0x0/0x38 returned 0 after 0 usecs
[ 0.133941] calling init_cpufreq_transition_notifier_list+0x0/0x2c @ 1
[ 0.133960] initcall init_cpufreq_transition_notifier_list+0x0/0x2c returned 0 after 0 usecs
[ 0.133983] calling net_ns_init+0x0/0x118 @ 1
[ 0.134246] initcall net_ns_init+0x0/0x118 returned 0 after 0 usecs
[ 0.134402] calling vfp_init+0x0/0x1c4 @ 1
[ 0.134413] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[ 0.134441] initcall vfp_init+0x0/0x1c4 returned 0 after 0 usecs
[ 0.134457] calling ptrace_break_init+0x0/0x34 @ 1
[ 0.134470] initcall ptrace_break_init+0x0/0x34 returned 0 after 0 usecs
[ 0.134488] calling register_cpufreq_notifier+0x0/0x20 @ 1
[ 0.134502] initcall register_cpufreq_notifier+0x0/0x20 returned 0 after 0 usecs
[ 0.134522] calling twd_clk_init+0x0/0x58 @ 1
[ 0.134531] initcall twd_clk_init+0x0/0x58 returned 0 after 0 usecs
[ 0.134546] calling v6_userpage_init+0x0/0x14 @ 1
[ 0.134556] initcall v6_userpage_init+0x0/0x14 returned 0 after 0 usecs
[ 0.134580] calling __omap_serial_early_init+0x0/0x184 @ 1
[ 0.134593] initcall __omap_serial_early_init+0x0/0x184 returned -19 after 0 usecs
[ 0.134606] calling __omap_hwmod_setup_all+0x0/0x48 @ 1
[ 0.145327] omap_hwmod: tptc0 using broken dt data from edma
[ 0.145454] omap_hwmod: tptc1 using broken dt data from edma
[ 0.145563] omap_hwmod: tptc2 using broken dt data from edma
[ 0.150064] omap_hwmod: debugss: _wait_target_disable failed
[ 0.203062] initcall __omap_hwmod_setup_all+0x0/0x48 returned 0 after 66406 usecs
[ 0.203083] calling __omap_device_init+0x0/0x34 @ 1
[ 0.203095] initcall __omap_device_init+0x0/0x34 returned 0 after 0 usecs
[ 0.203110] calling cpu_hotplug_pm_sync_init+0x0/0x20 @ 1
[ 0.203121] initcall cpu_hotplug_pm_sync_init+0x0/0x20 returned 0 after 0 usecs
[ 0.203132] calling alloc_frozen_cpus+0x0/0x14 @ 1
[ 0.203141] initcall alloc_frozen_cpus+0x0/0x14 returned 0 after 0 usecs
[ 0.203154] calling wq_sysfs_init+0x0/0x20 @ 1
[ 0.203356] initcall wq_sysfs_init+0x0/0x20 returned 0 after 3906 usecs
[ 0.203373] calling ksysfs_init+0x0/0xac @ 1
[ 0.203443] initcall ksysfs_init+0x0/0xac returned 0 after 0 usecs
[ 0.203459] calling pm_init+0x0/0x98 @ 1
[ 0.203597] initcall pm_init+0x0/0x98 returned 0 after 0 usecs
[ 0.203613] calling pm_disk_init+0x0/0x28 @ 1
[ 0.203642] initcall pm_disk_init+0x0/0x28 returned 0 after 0 usecs
[ 0.203659] calling swsusp_header_init+0x0/0x48 @ 1
[ 0.203672] initcall swsusp_header_init+0x0/0x48 returned 0 after 0 usecs
[ 0.203690] calling init_jiffies_clocksource+0x0/0x1c @ 1
[ 0.203707] initcall init_jiffies_clocksource+0x0/0x1c returned 0 after 0 usecs
[ 0.203724] calling cgroup_wq_init+0x0/0x80 @ 1
[ 0.203780] initcall cgroup_wq_init+0x0/0x80 returned 0 after 0 usecs
[ 0.203800] calling ftrace_mod_cmd_init+0x0/0x1c @ 1
[ 0.203814] initcall ftrace_mod_cmd_init+0x0/0x1c returned 0 after 0 usecs
[ 0.203831] calling init_function_trace+0x0/0xa0 @ 1
[ 0.203849] initcall init_function_trace+0x0/0xa0 returned 0 after 0 usecs
[ 0.203864] calling init_wakeup_tracer+0x0/0x44 @ 1
[ 0.203878] initcall init_wakeup_tracer+0x0/0x44 returned 0 after 0 usecs
[ 0.203889] calling init_graph_trace+0x0/0x88 @ 1
[ 0.203911] initcall init_graph_trace+0x0/0x88 returned 0 after 0 usecs
[ 0.203929] calling cpu_pm_init+0x0/0x28 @ 1
[ 0.203940] initcall cpu_pm_init+0x0/0x28 returned 0 after 0 usecs
[ 0.203955] calling perf_workqueue_init+0x0/0x84 @ 1
[ 0.204199] initcall perf_workqueue_init+0x0/0x84 returned 0 after 0 usecs
[ 0.204226] calling init_zero_pfn+0x0/0x58 @ 1
[ 0.204237] initcall init_zero_pfn+0x0/0x58 returned 0 after 0 usecs
[ 0.204255] calling cma_init_reserved_areas+0x0/0x220 @ 1
[ 0.204266] initcall cma_init_reserved_areas+0x0/0x220 returned 0 after 0 usecs
[ 0.204283] calling fsnotify_init+0x0/0x2c @ 1
[ 0.204301] initcall fsnotify_init+0x0/0x2c returned 0 after 0 usecs
[ 0.204316] calling filelock_init+0x0/0xa8 @ 1
[ 0.204362] initcall filelock_init+0x0/0xa8 returned 0 after 0 usecs
[ 0.204379] calling init_script_binfmt+0x0/0x24 @ 1
[ 0.204392] initcall init_script_binfmt+0x0/0x24 returned 0 after 0 usecs
[ 0.204407] calling init_elf_binfmt+0x0/0x24 @ 1
[ 0.204418] initcall init_elf_binfmt+0x0/0x24 returned 0 after 0 usecs
[ 0.204439] calling debugfs_init+0x0/0x74 @ 1
[ 0.204478] initcall debugfs_init+0x0/0x74 returned 0 after 0 usecs
[ 0.204502] calling securityfs_init+0x0/0x6c @ 1
[ 0.204524] initcall securityfs_init+0x0/0x6c returned 0 after 0 usecs
[ 0.204538] calling prandom_init+0x0/0xec @ 1
[ 0.204551] initcall prandom_init+0x0/0xec returned 0 after 0 usecs
[ 0.204565] calling cci_platform_init+0x0/0x3c @ 1
[ 0.204653] initcall cci_platform_init+0x0/0x3c returned 0 after 0 usecs
[ 0.204667] calling pinctrl_init+0x0/0xdc @ 1
[ 0.204674] pinctrl core: initialized pinctrl subsystem
[ 0.204800] initcall pinctrl_init+0x0/0xdc returned 0 after 0 usecs
[ 0.204829] calling virtio_init+0x0/0x34 @ 1
[ 0.204890] initcall virtio_init+0x0/0x34 returned 0 after 0 usecs
[ 0.204915] calling regulator_init+0x0/0x8c @ 1
[ 0.205368] initcall regulator_init+0x0/0x8c returned 0 after 0 usecs
[ 0.205394] calling soc_bus_register+0x0/0x1c @ 1
[ 0.205450] initcall soc_bus_register+0x0/0x1c returned 0 after 0 usecs
[ 0.205465] calling vexpress_syscfg_init+0x0/0x20 @ 1
[ 0.205508] initcall vexpress_syscfg_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205525] calling vexpress_sysreg_init+0x0/0x6c @ 1
[ 0.205798] initcall vexpress_sysreg_init+0x0/0x6c returned 0 after 0 usecs
[ 0.205815] calling cpufreq_core_init+0x0/0x48 @ 1
[ 0.205826] initcall cpufreq_core_init+0x0/0x48 returned 0 after 0 usecs
[ 0.205838] calling cpuidle_init+0x0/0x60 @ 1
[ 0.205870] initcall cpuidle_init+0x0/0x60 returned 0 after 0 usecs
[ 0.205883] calling cpuidle_coupled_init+0x0/0x1c @ 1
[ 0.205900] initcall cpuidle_coupled_init+0x0/0x1c returned 0 after 0 usecs
[ 0.205913] calling sh_pm_runtime_init+0x0/0x130 @ 1
[ 0.205941] initcall sh_pm_runtime_init+0x0/0x130 returned 0 after 0 usecs
[ 0.205956] calling of_init+0x0/0xc0 @ 1
[ 0.214081] initcall of_init+0x0/0xc0 returned 0 after 7812 usecs
[ 0.214123] calling exynos_audss_clk_init+0x0/0x20 @ 1
[ 0.214199] initcall exynos_audss_clk_init+0x0/0x20 returned 0 after 0 usecs
[ 0.214221] calling vexpress_osc_init+0x0/0x20 @ 1
[ 0.214268] initcall vexpress_osc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.214284] calling sock_init+0x0/0xac @ 1
[ 0.214588] initcall sock_init+0x0/0xac returned 0 after 0 usecs
[ 0.214609] calling net_inuse_init+0x0/0x2c @ 1
[ 0.214626] initcall net_inuse_init+0x0/0x2c returned 0 after 0 usecs
[ 0.214641] calling netpoll_init+0x0/0x30 @ 1
[ 0.214651] initcall netpoll_init+0x0/0x30 returned 0 after 0 usecs
[ 0.214666] calling netlink_proto_init+0x0/0x1a8 @ 1
[ 0.214853] NET: Registered protocol family 16
[ 0.214921] initcall netlink_proto_init+0x0/0x1a8 returned 0 after 0 usecs
[ 0.215099] calling atomic_pool_init+0x0/0x128 @ 1
[ 0.215524] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.215540] initcall atomic_pool_init+0x0/0x128 returned 0 after 3906 usecs
[ 0.215558] calling exynos_pmu_init+0x0/0x20 @ 1
[ 0.215641] initcall exynos_pmu_init+0x0/0x20 returned 0 after 0 usecs
[ 0.215658] calling mvebu_soc_device+0x0/0xc4 @ 1
[ 0.215669] initcall mvebu_soc_device+0x0/0xc4 returned 0 after 0 usecs
[ 0.215683] calling coherency_late_init+0x0/0x14 @ 1
[ 0.215693] initcall coherency_late_init+0x0/0x14 returned 0 after 0 usecs
[ 0.215708] calling imx_mmdc_init+0x0/0x20 @ 1
[ 0.215755] initcall imx_mmdc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.215775] calling __omap_gpmc_init+0x0/0xbc @ 1
[ 0.215786] initcall __omap_gpmc_init+0x0/0xbc returned -19 after 0 usecs
[ 0.215801] calling __omap3_l3_init+0x0/0xfc @ 1
[ 0.215812] initcall __omap3_l3_init+0x0/0xfc returned -19 after 0 usecs
[ 0.215824] calling __omap2_common_pm_init+0x0/0xa8 @ 1
[ 0.215835] initcall __omap2_common_pm_init+0x0/0xa8 returned 0 after 0 usecs
[ 0.215846] calling __omap2_gpio_init+0x0/0x4c @ 1
[ 0.215856] initcall __omap2_gpio_init+0x0/0x4c returned -19 after 0 usecs
[ 0.215877] calling __hwspinlocks_init+0x0/0x90 @ 1
[ 0.216122] initcall __hwspinlocks_init+0x0/0x90 returned 0 after 0 usecs
[ 0.216144] calling bdi_class_init+0x0/0x64 @ 1
[ 0.216214] initcall bdi_class_init+0x0/0x64 returned 0 after 0 usecs
[ 0.216229] calling mm_sysfs_init+0x0/0x40 @ 1
[ 0.216251] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.216273] calling ramoops_init+0x0/0x124 @ 1
[ 0.216326] initcall ramoops_init+0x0/0x124 returned 0 after 0 usecs
[ 0.216341] calling kobject_uevent_init+0x0/0x1c @ 1
[ 0.216376] initcall kobject_uevent_init+0x0/0x1c returned 0 after 0 usecs
[ 0.216391] calling intc_irqpin_init+0x0/0x20 @ 1
[ 0.216443] initcall intc_irqpin_init+0x0/0x20 returned 0 after 0 usecs
[ 0.216456] calling irqc_init+0x0/0x20 @ 1
[ 0.216502] initcall irqc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.216517] calling vexpress_config_init+0x0/0xd0 @ 1
[ 0.216749] initcall vexpress_config_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.216767] calling samsung_pinctrl_drv_register+0x0/0x2c @ 1
[ 0.216827] initcall samsung_pinctrl_drv_register+0x0/0x2c returned 0 after 0 usecs
[ 0.216844] calling exynos5440_pinctrl_drv_register+0x0/0x20 @ 1
[ 0.216893] initcall exynos5440_pinctrl_drv_register+0x0/0x20 returned 0 after 0 usecs
[ 0.216907] calling sh_pfc_init+0x0/0x20 @ 1
[ 0.216969] initcall sh_pfc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.216984] calling gpiolib_sysfs_init+0x0/0xa8 @ 1
[ 0.217028] initcall gpiolib_sysfs_init+0x0/0xa8 returned 0 after 0 usecs
[ 0.217042] calling gpio_mxc_init+0x0/0x20 @ 1
[ 0.217096] initcall gpio_mxc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.217111] calling omap_gpio_drv_reg+0x0/0x20 @ 1
[ 0.217156] initcall omap_gpio_drv_reg+0x0/0x20 returned 0 after 0 usecs
[ 0.217170] calling tegra_gpio_init+0x0/0x20 @ 1
[ 0.217216] initcall tegra_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.217231] calling pcibus_class_init+0x0/0x24 @ 1
[ 0.217260] initcall pcibus_class_init+0x0/0x24 returned 0 after 0 usecs
[ 0.217274] calling pci_driver_init+0x0/0x1c @ 1
[ 0.217346] initcall pci_driver_init+0x0/0x1c returned 0 after 0 usecs
[ 0.217364] calling backlight_class_init+0x0/0xac @ 1
[ 0.217394] initcall backlight_class_init+0x0/0xac returned 0 after 0 usecs
[ 0.217410] calling amba_init+0x0/0x1c @ 1
[ 0.217469] initcall amba_init+0x0/0x1c returned 0 after 0 usecs
[ 0.217486] calling tegra30_fuse_init+0x0/0x20 @ 1
[ 0.217534] initcall tegra30_fuse_init+0x0/0x20 returned 0 after 0 usecs
[ 0.217550] calling tegra20_fuse_init+0x0/0x20 @ 1
[ 0.217597] initcall tegra20_fuse_init+0x0/0x20 returned 0 after 0 usecs
[ 0.217614] calling tty_class_init+0x0/0x48 @ 1
[ 0.217642] initcall tty_class_init+0x0/0x48 returned 0 after 0 usecs
[ 0.217659] calling vtconsole_class_init+0x0/0xe4 @ 1
[ 0.217828] initcall vtconsole_class_init+0x0/0xe4 returned 0 after 0 usecs
[ 0.217847] calling iommu_dev_init+0x0/0x24 @ 1
[ 0.217876] initcall iommu_dev_init+0x0/0x24 returned 0 after 0 usecs
[ 0.217889] calling mipi_dsi_bus_init+0x0/0x1c @ 1
[ 0.217948] initcall mipi_dsi_bus_init+0x0/0x1c returned 0 after 0 usecs
[ 0.217963] calling wakeup_sources_debugfs_init+0x0/0x4c @ 1
[ 0.217996] initcall wakeup_sources_debugfs_init+0x0/0x4c returned 0 after 0 usecs
[ 0.218011] calling regmap_initcall+0x0/0x18 @ 1
[ 0.218031] initcall regmap_initcall+0x0/0x18 returned 0 after 0 usecs
[ 0.218044] calling sram_init+0x0/0x20 @ 1
[ 0.218096] initcall sram_init+0x0/0x20 returned 0 after 0 usecs
[ 0.218113] calling syscon_init+0x0/0x20 @ 1
[ 0.218160] initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
[ 0.218177] calling spi_init+0x0/0x9c @ 1
[ 0.218263] initcall spi_init+0x0/0x9c returned 0 after 0 usecs
[ 0.218281] calling mxs_phy_module_init+0x0/0x20 @ 1
[ 0.218333] initcall mxs_phy_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.218346] calling i2c_init+0x0/0x80 @ 1
[ 0.218448] initcall i2c_init+0x0/0x80 returned 0 after 0 usecs
[ 0.218464] calling init_ladder+0x0/0x1c @ 1
[ 0.218476] cpuidle: using governor ladder
[ 0.218486] initcall init_ladder+0x0/0x1c returned 0 after 0 usecs
[ 0.218498] calling init_menu+0x0/0x1c @ 1
[ 0.218506] cpuidle: using governor menu
[ 0.218515] initcall init_menu+0x0/0x1c returned 0 after 0 usecs
[ 0.218531] calling gpmc_init+0x0/0x20 @ 1
[ 0.218581] initcall gpmc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.218595] calling omap3_l3_init+0x0/0x20 @ 1
[ 0.218642] initcall omap3_l3_init+0x0/0x20 returned 0 after 0 usecs
[ 0.218654] calling omap_l3_init+0x0/0x20 @ 1
[ 0.218707] initcall omap_l3_init+0x0/0x20 returned 0 after 0 usecs
[ 0.218872] calling gate_vma_init+0x0/0x30 @ 1
[ 0.218884] initcall gate_vma_init+0x0/0x30 returned 0 after 0 usecs
[ 0.218899] calling customize_machine+0x0/0x4c @ 1
[ 0.222348] OMAP GPIO hardware version 0.1
[ 0.232287] initcall customize_machine+0x0/0x4c returned 0 after 15625 usecs
[ 0.232324] calling init_atags_procfs+0x0/0xf4 @ 1
[ 0.232333] No ATAGs?
[ 0.232346] initcall init_atags_procfs+0x0/0xf4 returned -22 after 0 usecs
[ 0.232360] calling arch_hw_breakpoint_init+0x0/0x250 @ 1
[ 0.232368] hw-breakpoint: debug architecture 0x4 unsupported.
[ 0.232378] initcall arch_hw_breakpoint_init+0x0/0x250 returned 0 after 0 usecs
[ 0.232391] calling exceptions_init+0x0/0xa4 @ 1
[ 0.232402] initcall exceptions_init+0x0/0xa4 returned 0 after 0 usecs
[ 0.232416] calling edma_init+0x0/0x28 @ 1
[ 0.233480] initcall edma_init+0x0/0x28 returned 0 after 0 usecs
[ 0.233503] calling exynos4_pm_init_power_domain+0x0/0x200 @ 1
[ 0.233643] initcall exynos4_pm_init_power_domain+0x0/0x200 returned 0 after 0 usecs
[ 0.233659] calling coherency_pci_init+0x0/0x14 @ 1
[ 0.233669] initcall coherency_pci_init+0x0/0x14 returned 0 after 0 usecs
[ 0.233684] calling mvebu_v7_cpu_pm_init+0x0/0x268 @ 1
[ 0.233895] initcall mvebu_v7_cpu_pm_init+0x0/0x268 returned 0 after 0 usecs
[ 0.233917] calling __omap2_init_devices+0x0/0x1f0 @ 1
[ 0.234077] initcall __omap2_init_devices+0x0/0x1f0 returned 0 after 0 usecs
[ 0.234093] calling __omap2_dm_timer_init+0x0/0x74 @ 1
[ 0.234103] initcall __omap2_dm_timer_init+0x0/0x74 returned -19 after 0 usecs
[ 0.234117] calling __omap2_system_dma_init+0x0/0x6c @ 1
[ 0.234155] initcall __omap2_system_dma_init+0x0/0x6c returned 0 after 0 usecs
[ 0.234168] calling __omap2_mcbsp_init+0x0/0x48 @ 1
[ 0.234178] initcall __omap2_mcbsp_init+0x0/0x48 returned 0 after 0 usecs
[ 0.234191] calling __pm_dbg_init+0x0/0xd8 @ 1
[ 0.234371] initcall __pm_dbg_init+0x0/0xd8 returned 0 after 0 usecs
[ 0.234391] calling __omap3xxx_clk_arch_init+0x0/0x70 @ 1
[ 0.234401] initcall __omap3xxx_clk_arch_init+0x0/0x70 returned 0 after 0 usecs
[ 0.234423] calling omap_system_dma_init+0x0/0x20 @ 1
[ 0.234528] initcall omap_system_dma_init+0x0/0x20 returned 0 after 0 usecs
[ 0.234543] calling s3c_arch_init+0x0/0x4c @ 1
[ 0.234552] initcall s3c_arch_init+0x0/0x4c returned 0 after 0 usecs
[ 0.234572] calling kcmp_cookies_init+0x0/0x4c @ 1
[ 0.234628] initcall kcmp_cookies_init+0x0/0x4c returned 0 after 0 usecs
[ 0.234646] calling imx50_pinctrl_init+0x0/0x20 @ 1
[ 0.234760] initcall imx50_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.234776] calling imx51_pinctrl_init+0x0/0x20 @ 1
[ 0.234872] initcall imx51_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.234886] calling imx6q_pinctrl_init+0x0/0x20 @ 1
[ 0.234975] initcall imx6q_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.234989] calling imx6dl_pinctrl_init+0x0/0x20 @ 1
[ 0.235080] initcall imx6dl_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.235094] calling imx6sl_pinctrl_init+0x0/0x20 @ 1
[ 0.235185] initcall imx6sl_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.235199] calling imx6sx_pinctrl_init+0x0/0x20 @ 1
[ 0.235378] initcall imx6sx_pinctrl_init+0x0/0x20 returned 0 after 3906 usecs
[ 0.235396] calling vf610_pinctrl_init+0x0/0x20 @ 1
[ 0.235520] initcall vf610_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.235543] calling dma_bus_init+0x0/0xf8 @ 1
[ 0.235672] initcall dma_bus_init+0x0/0xf8 returned 0 after 0 usecs
[ 0.235690] calling dma_channel_table_init+0x0/0xe8 @ 1
[ 0.235714] initcall dma_channel_table_init+0x0/0xe8 returned 0 after 0 usecs
[ 0.235732] calling berlin_reset_init+0x0/0x114 @ 1
[ 0.236019] initcall berlin_reset_init+0x0/0x114 returned 0 after 0 usecs
[ 0.236033] calling pl011_init+0x0/0x28 @ 1
[ 0.236040] Serial: AMBA PL011 UART driver
[ 0.236097] initcall pl011_init+0x0/0x28 returned 0 after 0 usecs
[ 0.236113] calling iommu_init+0x0/0x68 @ 1
[ 0.236136] initcall iommu_init+0x0/0x68 returned 0 after 0 usecs
[ 0.236164] calling tegra_mc_init+0x0/0x28 @ 1
[ 0.236306] initcall tegra_mc_init+0x0/0x28 returned 0 after 0 usecs
[ 0.236486] calling topology_init+0x0/0x78 @ 1
[ 0.236662] initcall topology_init+0x0/0x78 returned 0 after 0 usecs
[ 0.236678] calling __omap_init_wdt+0x0/0xcc @ 1
[ 0.236688] initcall __omap_init_wdt+0x0/0xcc returned 0 after 0 usecs
[ 0.236700] calling __omap_i2c_cmdline+0x0/0x20 @ 1
[ 0.236710] initcall __omap_i2c_cmdline+0x0/0x20 returned 0 after 0 usecs
[ 0.236724] calling prm_late_init+0x0/0x2c @ 1
[ 0.236734] initcall prm_late_init+0x0/0x2c returned 0 after 0 usecs
[ 0.236748] calling __omap_init_pmu+0x0/0x164 @ 1
[ 0.236759] initcall __omap_init_pmu+0x0/0x164 returned 0 after 0 usecs
[ 0.236772] calling __omap_iommu_init+0x0/0x4c @ 1
[ 0.236782] initcall __omap_iommu_init+0x0/0x4c returned -19 after 0 usecs
[ 0.236794] calling uid_cache_init+0x0/0xc4 @ 1
[ 0.236811] initcall uid_cache_init+0x0/0xc4 returned 0 after 0 usecs
[ 0.236824] calling param_sysfs_init+0x0/0x1d4 @ 1
[ 0.244453] initcall param_sysfs_init+0x0/0x1d4 returned 0 after 7812 usecs
[ 0.244479] calling proc_schedstat_init+0x0/0x40 @ 1
[ 0.244502] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[ 0.244516] calling pm_sysrq_init+0x0/0x24 @ 1
[ 0.244529] initcall pm_sysrq_init+0x0/0x24 returned 0 after 0 usecs
[ 0.244545] calling create_proc_profile+0x0/0x230 @ 1
[ 0.244555] initcall create_proc_profile+0x0/0x230 returned 0 after 0 usecs
[ 0.244574] calling crash_save_vmcoreinfo_init+0x0/0x438 @ 1
[ 0.244669] initcall crash_save_vmcoreinfo_init+0x0/0x438 returned 0 after 0 usecs
[ 0.244684] calling crash_notes_memory_init+0x0/0x48 @ 1
[ 0.244703] initcall crash_notes_memory_init+0x0/0x48 returned 0 after 0 usecs
[ 0.244719] calling user_namespaces_init+0x0/0x48 @ 1
[ 0.244736] initcall user_namespaces_init+0x0/0x48 returned 0 after 0 usecs
[ 0.244752] calling hung_task_init+0x0/0x60 @ 1
[ 0.245007] initcall hung_task_init+0x0/0x60 returned 0 after 0 usecs
[ 0.245032] calling default_bdi_init+0x0/0x7c @ 1
[ 0.245584] initcall default_bdi_init+0x0/0x7c returned 0 after 0 usecs
[ 0.245605] calling percpu_enable_async+0x0/0x24 @ 1
[ 0.245616] initcall percpu_enable_async+0x0/0x24 returned 0 after 0 usecs
[ 0.245633] calling init_reserve_notifier+0x0/0x14 @ 1
[ 0.245642] initcall init_reserve_notifier+0x0/0x14 returned 0 after 0 usecs
[ 0.245669] calling init_admin_reserve+0x0/0x44 @ 1
[ 0.245680] initcall init_admin_reserve+0x0/0x44 returned 0 after 0 usecs
[ 0.245694] calling init_user_reserve+0x0/0x44 @ 1
[ 0.245704] initcall init_user_reserve+0x0/0x44 returned 0 after 0 usecs
[ 0.245723] calling mmu_notifier_init+0x0/0x1c @ 1
[ 0.245737] initcall mmu_notifier_init+0x0/0x1c returned 0 after 0 usecs
[ 0.245750] calling ksm_init+0x0/0x15c @ 1
[ 0.245982] initcall ksm_init+0x0/0x15c returned 0 after 0 usecs
[ 0.246003] calling mem_cgroup_init+0x0/0x144 @ 1
[ 0.246025] initcall mem_cgroup_init+0x0/0x144 returned 0 after 0 usecs
[ 0.246052] calling crypto_wq_init+0x0/0x4c @ 1
[ 0.246210] initcall crypto_wq_init+0x0/0x4c returned 0 after 0 usecs
[ 0.246229] calling cryptomgr_init+0x0/0x1c @ 1
[ 0.246241] initcall cryptomgr_init+0x0/0x1c returned 0 after 0 usecs
[ 0.246256] calling init_bio+0x0/0xe8 @ 1
[ 0.246561] initcall init_bio+0x0/0xe8 returned 0 after 0 usecs
[ 0.246584] calling blk_settings_init+0x0/0x44 @ 1
[ 0.246596] initcall blk_settings_init+0x0/0x44 returned 0 after 0 usecs
[ 0.246610] calling blk_ioc_init+0x0/0x48 @ 1
[ 0.246623] initcall blk_ioc_init+0x0/0x48 returned 0 after 0 usecs
[ 0.246638] calling blk_softirq_init+0x0/0x88 @ 1
[ 0.246652] initcall blk_softirq_init+0x0/0x88 returned 0 after 0 usecs
[ 0.246667] calling blk_iopoll_setup+0x0/0x88 @ 1
[ 0.246679] initcall blk_iopoll_setup+0x0/0x88 returned 0 after 0 usecs
[ 0.246693] calling blk_mq_init+0x0/0x24 @ 1
[ 0.246705] initcall blk_mq_init+0x0/0x24 returned 0 after 0 usecs
[ 0.246721] calling genhd_device_init+0x0/0x88 @ 1
[ 0.246941] initcall genhd_device_init+0x0/0x88 returned 0 after 0 usecs
[ 0.246959] calling blk_dev_integrity_init+0x0/0x48 @ 1
[ 0.246980] initcall blk_dev_integrity_init+0x0/0x48 returned 0 after 0 usecs
[ 0.246998] calling gpiolib_debugfs_init+0x0/0x40 @ 1
[ 0.247038] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.247052] calling rc5t583_gpio_init+0x0/0x20 @ 1
[ 0.247190] initcall rc5t583_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247205] calling stmpe_gpio_init+0x0/0x20 @ 1
[ 0.247361] initcall stmpe_gpio_init+0x0/0x20 returned 0 after 3906 usecs
[ 0.247377] calling sx150x_init+0x0/0x20 @ 1
[ 0.247427] initcall sx150x_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247442] calling tc3589x_gpio_init+0x0/0x20 @ 1
[ 0.247512] initcall tc3589x_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247526] calling palmas_gpio_init+0x0/0x20 @ 1
[ 0.247696] initcall palmas_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247711] calling tps6586x_gpio_init+0x0/0x20 @ 1
[ 0.247778] initcall tps6586x_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247793] calling tps65910_gpio_init+0x0/0x20 @ 1
[ 0.247857] initcall tps65910_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247873] calling gpio_twl4030_init+0x0/0x20 @ 1
[ 0.247966] initcall gpio_twl4030_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247980] calling pwm_debugfs_init+0x0/0x40 @ 1
[ 0.248010] initcall pwm_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.248025] calling pwm_sysfs_init+0x0/0x24 @ 1
[ 0.248057] initcall pwm_sysfs_init+0x0/0x24 returned 0 after 0 usecs
[ 0.248079] calling pci_slot_init+0x0/0x64 @ 1
[ 0.248101] initcall pci_slot_init+0x0/0x64 returned 0 after 0 usecs
[ 0.248118] calling exynos_pcie_init+0x0/0x28 @ 1
[ 0.248249] initcall exynos_pcie_init+0x0/0x28 returned -19 after 0 usecs
[ 0.248266] calling fbmem_init+0x0/0xbc @ 1
[ 0.248320] initcall fbmem_init+0x0/0xbc returned 0 after 0 usecs
[ 0.248337] calling omapdss_boot_init+0x0/0x288 @ 1
[ 0.248766] initcall omapdss_boot_init+0x0/0x288 returned 0 after 0 usecs
[ 0.248783] calling ipu_init+0x0/0x28 @ 1
[ 0.248913] initcall ipu_init+0x0/0x28 returned -19 after 0 usecs
[ 0.248934] calling mxs_dma_module_init+0x0/0x28 @ 1
[ 0.249088] initcall mxs_dma_module_init+0x0/0x28 returned -19 after 0 usecs
[ 0.249107] calling edma_init+0x0/0x28 @ 1
[ 0.256572] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver
[ 0.256655] initcall edma_init+0x0/0x28 returned 0 after 7812 usecs
[ 0.256684] calling pl08x_init+0x0/0x38 @ 1
[ 0.256738] initcall pl08x_init+0x0/0x38 returned 0 after 0 usecs
[ 0.256757] calling omap_dma_init+0x0/0x28 @ 1
[ 0.256989] initcall omap_dma_init+0x0/0x28 returned 0 after 0 usecs
[ 0.257012] calling regulator_fixed_voltage_init+0x0/0x20 @ 1
[ 0.257495] initcall regulator_fixed_voltage_init+0x0/0x20 returned 0 after 0 usecs
[ 0.257516] calling twlreg_init+0x0/0x20 @ 1
[ 0.258257] initcall twlreg_init+0x0/0x20 returned 0 after 0 usecs
[ 0.258274] calling misc_init+0x0/0xd8 @ 1
[ 0.258330] initcall misc_init+0x0/0xd8 returned 0 after 0 usecs
[ 0.258345] calling msm_iommu_init+0x0/0x70 @ 1
[ 0.258377] initcall msm_iommu_init+0x0/0x70 returned 0 after 0 usecs
[ 0.258390] calling msm_iommu_driver_init+0x0/0x7c @ 1
[ 0.258518] initcall msm_iommu_driver_init+0x0/0x7c returned 0 after 0 usecs
[ 0.258532] calling omap_iommu_init+0x0/0x78 @ 1
[ 0.258695] initcall omap_iommu_init+0x0/0x78 returned 0 after 0 usecs
[ 0.258715] calling tegra_gart_init+0x0/0x28 @ 1
[ 0.258809] initcall tegra_gart_init+0x0/0x28 returned 0 after 0 usecs
[ 0.258824] calling exynos_iommu_init+0x0/0x11c @ 1
[ 0.258919] exynos_iommu_init: Failed to register exynos-iommu driver.
[ 0.258974] initcall exynos_iommu_init+0x0/0x11c returned -16 after 0 usecs
[ 0.258987] calling ipmmu_init+0x0/0x20 @ 1
[ 0.259055] initcall ipmmu_init+0x0/0x20 returned 0 after 0 usecs
[ 0.259069] calling vga_arb_device_init+0x0/0xf8 @ 1
[ 0.259451] vgaarb: loaded
[ 0.259472] initcall vga_arb_device_init+0x0/0xf8 returned 0 after 3906 usecs
[ 0.259498] calling cn_init+0x0/0xe0 @ 1
[ 0.259559] initcall cn_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.259577] calling pm860x_i2c_init+0x0/0x3c @ 1
[ 0.259645] initcall pm860x_i2c_init+0x0/0x3c returned 0 after 0 usecs
[ 0.259660] calling asic3_init+0x0/0x28 @ 1
[ 0.259771] initcall asic3_init+0x0/0x28 returned -19 after 0 usecs
[ 0.259786] calling egpio_init+0x0/0x28 @ 1
[ 0.259866] initcall egpio_init+0x0/0x28 returned -19 after 0 usecs
[ 0.259881] calling stmpe_init+0x0/0x20 @ 1
[ 0.259927] initcall stmpe_init+0x0/0x20 returned 0 after 0 usecs
[ 0.259941] calling stmpe_init+0x0/0x1c @ 1
[ 0.259986] initcall stmpe_init+0x0/0x1c returned 0 after 0 usecs
[ 0.260000] calling tc3589x_init+0x0/0x20 @ 1
[ 0.260049] initcall tc3589x_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260064] calling tc6393xb_init+0x0/0x20 @ 1
[ 0.260134] initcall tc6393xb_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260148] calling wm8400_module_init+0x0/0x3c @ 1
[ 0.260192] initcall wm8400_module_init+0x0/0x3c returned 0 after 0 usecs
[ 0.260206] calling wm831x_i2c_init+0x0/0x3c @ 1
[ 0.260249] initcall wm831x_i2c_init+0x0/0x3c returned 0 after 0 usecs
[ 0.260263] calling wm831x_spi_init+0x0/0x34 @ 1
[ 0.260304] initcall wm831x_spi_init+0x0/0x34 returned 0 after 0 usecs
[ 0.260318] calling wm8350_i2c_init+0x0/0x20 @ 1
[ 0.260361] initcall wm8350_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260375] calling tps65910_i2c_init+0x0/0x20 @ 1
[ 0.260418] initcall tps65910_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260432] calling tps65912_i2c_init+0x0/0x3c @ 1
[ 0.260477] initcall tps65912_i2c_init+0x0/0x3c returned 0 after 0 usecs
[ 0.260491] calling tps65912_spi_init+0x0/0x34 @ 1
[ 0.260533] initcall tps65912_spi_init+0x0/0x34 returned 0 after 0 usecs
[ 0.260547] calling tps80031_init+0x0/0x20 @ 1
[ 0.260597] initcall tps80031_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260611] calling ezx_pcap_init+0x0/0x1c @ 1
[ 0.260654] initcall ezx_pcap_init+0x0/0x1c returned 0 after 0 usecs
[ 0.260668] calling da903x_init+0x0/0x20 @ 1
[ 0.260712] initcall da903x_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260727] calling da9052_spi_init+0x0/0x38 @ 1
[ 0.260769] initcall da9052_spi_init+0x0/0x38 returned 0 after 0 usecs
[ 0.260784] calling da9052_i2c_init+0x0/0x3c @ 1
[ 0.260828] initcall da9052_i2c_init+0x0/0x3c returned 0 after 0 usecs
[ 0.260842] calling lp8788_init+0x0/0x20 @ 1
[ 0.260886] initcall lp8788_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260900] calling da9055_i2c_init+0x0/0x3c @ 1
[ 0.260944] initcall da9055_i2c_init+0x0/0x3c returned 0 after 0 usecs
[ 0.260959] calling max14577_i2c_init+0x0/0x20 @ 1
[ 0.261003] initcall max14577_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261017] calling max77686_i2c_init+0x0/0x20 @ 1
[ 0.261060] initcall max77686_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261074] calling max77693_i2c_init+0x0/0x20 @ 1
[ 0.261118] initcall max77693_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261131] calling max8925_i2c_init+0x0/0x3c @ 1
[ 0.261175] initcall max8925_i2c_init+0x0/0x3c returned 0 after 0 usecs
[ 0.261190] calling max8997_i2c_init+0x0/0x20 @ 1
[ 0.261233] initcall max8997_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261247] calling max8998_i2c_init+0x0/0x20 @ 1
[ 0.261291] initcall max8998_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261306] calling ab3100_i2c_init+0x0/0x20 @ 1
[ 0.261354] initcall ab3100_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261369] calling tps6586x_init+0x0/0x20 @ 1
[ 0.261414] initcall tps6586x_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261428] calling tps65090_init+0x0/0x20 @ 1
[ 0.261473] initcall tps65090_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261487] calling aat2870_init+0x0/0x20 @ 1
[ 0.261531] initcall aat2870_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261546] calling palmas_i2c_init+0x0/0x20 @ 1
[ 0.261590] initcall palmas_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261604] calling rc5t583_i2c_init+0x0/0x20 @ 1
[ 0.261648] initcall rc5t583_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261662] calling sec_pmic_init+0x0/0x20 @ 1
[ 0.261705] initcall sec_pmic_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261720] calling as3711_i2c_init+0x0/0x20 @ 1
[ 0.261769] initcall as3711_i2c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.261785] calling dma_buf_init+0x0/0x98 @ 1
[ 0.261829] initcall dma_buf_init+0x0/0x98 returned 0 after 0 usecs
[ 0.261844] calling init_scsi+0x0/0x98 @ 1
[ 0.262241] SCSI subsystem initialized
[ 0.262263] initcall init_scsi+0x0/0x98 returned 0 after 0 usecs
[ 0.262279] calling ata_init+0x0/0x37c @ 1
[ 0.262628] libata version 3.00 loaded.
[ 0.262649] initcall ata_init+0x0/0x37c returned 0 after 0 usecs
[ 0.262666] calling phy_init+0x0/0x44 @ 1
[ 0.262829] initcall phy_init+0x0/0x44 returned 0 after 0 usecs
[ 0.262846] calling usb_init+0x0/0x184 @ 1
[ 0.263039] usbcore: registered new interface driver usbfs
[ 0.263120] usbcore: registered new interface driver hub
[ 0.263229] usbcore: registered new device driver usb
[ 0.263318] initcall usb_init+0x0/0x184 returned 0 after 3906 usecs
[ 0.263337] calling usb_phy_generic_init+0x0/0x20 @ 1
[ 0.263521] initcall usb_phy_generic_init+0x0/0x20 returned 0 after 0 usecs
[ 0.263538] calling usb_udc_init+0x0/0x60 @ 1
[ 0.263573] initcall usb_udc_init+0x0/0x60 returned 0 after 0 usecs
[ 0.263588] calling serio_init+0x0/0x38 @ 1
[ 0.263649] initcall serio_init+0x0/0x38 returned 0 after 0 usecs
[ 0.263665] calling input_init+0x0/0x124 @ 1
[ 0.263713] initcall input_init+0x0/0x124 returned 0 after 0 usecs
[ 0.263729] calling rtc_init+0x0/0x68 @ 1
[ 0.263759] initcall rtc_init+0x0/0x68 returned 0 after 0 usecs
[ 0.263772] calling i2c_adap_imx_init+0x0/0x20 @ 1
[ 0.263905] initcall i2c_adap_imx_init+0x0/0x20 returned 0 after 0 usecs
[ 0.263919] calling omap_i2c_init_driver+0x0/0x20 @ 1
[ 0.264030] omap_i2c 44e0b000.i2c: could not find pctldev for node /pinmux@44e10800/pinmux_i2c0_pins, deferring probe
[ 0.264055] platform 44e0b000.i2c: Driver omap_i2c requests probe deferral
[ 0.264157] initcall omap_i2c_init_driver+0x0/0x20 returned 0 after 0 usecs
[ 0.264170] calling i2c_adap_s3c_init+0x0/0x20 @ 1
[ 0.264322] initcall i2c_adap_s3c_init+0x0/0x20 returned 0 after 0 usecs
[ 0.264333] calling pps_init+0x0/0xbc @ 1
[ 0.264361] pps_core: LinuxPPS API ver. 1 registered
[ 0.264368] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.264378] initcall pps_init+0x0/0xbc returned 0 after 0 usecs
[ 0.264388] calling ptp_init+0x0/0xa8 @ 1
[ 0.264413] PTP clock support registered
[ 0.264423] initcall ptp_init+0x0/0xa8 returned 0 after 0 usecs
[ 0.264436] calling power_supply_class_init+0x0/0x58 @ 1
[ 0.264464] initcall power_supply_class_init+0x0/0x58 returned 0 after 0 usecs
[ 0.264478] calling hwmon_init+0x0/0x3c @ 1
[ 0.264504] initcall hwmon_init+0x0/0x3c returned 0 after 0 usecs
[ 0.264517] calling watchdog_init+0x0/0x6c @ 1
[ 0.264545] initcall watchdog_init+0x0/0x6c returned 0 after 0 usecs
[ 0.264557] calling md_init+0x0/0x190 @ 1
[ 0.264833] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[ 0.264854] calling mmc_init+0x0/0x90 @ 1
[ 0.265042] initcall mmc_init+0x0/0x90 returned 0 after 0 usecs
[ 0.265059] calling leds_init+0x0/0x54 @ 1
[ 0.265091] initcall leds_init+0x0/0x54 returned 0 after 0 usecs
[ 0.265105] calling sh_cmt_init+0x0/0x20 @ 1
[ 0.265279] initcall sh_cmt_init+0x0/0x20 returned 0 after 0 usecs
[ 0.265295] calling sh_mtu2_init+0x0/0x20 @ 1
[ 0.265391] initcall sh_mtu2_init+0x0/0x20 returned 0 after 0 usecs
[ 0.265405] calling sh_tmu_init+0x0/0x20 @ 1
[ 0.265497] initcall sh_tmu_init+0x0/0x20 returned 0 after 0 usecs
[ 0.265511] calling em_sti_init+0x0/0x20 @ 1
[ 0.265601] initcall em_sti_init+0x0/0x20 returned 0 after 0 usecs
[ 0.265621] calling devfreq_init+0x0/0xcc @ 1
[ 0.265828] initcall devfreq_init+0x0/0xcc returned 0 after 0 usecs
[ 0.265850] calling devfreq_simple_ondemand_init+0x0/0x1c @ 1
[ 0.265863] initcall devfreq_simple_ondemand_init+0x0/0x1c returned 0 after 0 usecs
[ 0.265877] calling devfreq_performance_init+0x0/0x1c @ 1
[ 0.265888] initcall devfreq_performance_init+0x0/0x1c returned 0 after 0 usecs
[ 0.265901] calling devfreq_powersave_init+0x0/0x1c @ 1
[ 0.265911] initcall devfreq_powersave_init+0x0/0x1c returned 0 after 0 usecs
[ 0.265924] calling devfreq_userspace_init+0x0/0x1c @ 1
[ 0.265934] initcall devfreq_userspace_init+0x0/0x1c returned 0 after 0 usecs
[ 0.265947] calling vme_init+0x0/0x1c @ 1
[ 0.266016] initcall vme_init+0x0/0x1c returned 0 after 0 usecs
[ 0.266030] calling ras_init+0x0/0x18 @ 1
[ 0.266094] initcall ras_init+0x0/0x18 returned 0 after 0 usecs
[ 0.266111] calling init_soundcore+0x0/0xcc @ 1
[ 0.266142] initcall init_soundcore+0x0/0xcc returned 0 after 0 usecs
[ 0.266157] calling alsa_sound_init+0x0/0xbc @ 1
[ 0.266220] Advanced Linux Sound Architecture Driver Initialized.
[ 0.266234] initcall alsa_sound_init+0x0/0xbc returned 0 after 0 usecs
[ 0.266249] calling imx_audmux_init+0x0/0x20 @ 1
[ 0.266393] initcall imx_audmux_init+0x0/0x20 returned 0 after 0 usecs
[ 0.266411] calling ac97_bus_init+0x0/0x1c @ 1
[ 0.266473] initcall ac97_bus_init+0x0/0x1c returned 0 after 0 usecs
[ 0.266488] calling proto_init+0x0/0x1c @ 1
[ 0.266509] initcall proto_init+0x0/0x1c returned 0 after 0 usecs
[ 0.266524] calling net_dev_init+0x0/0x1c8 @ 1
[ 0.267176] initcall net_dev_init+0x0/0x1c8 returned 0 after 0 usecs
[ 0.267196] calling neigh_init+0x0/0xac @ 1
[ 0.267209] initcall neigh_init+0x0/0xac returned 0 after 0 usecs
[ 0.267223] calling fib_rules_init+0x0/0xd0 @ 1
[ 0.267314] initcall fib_rules_init+0x0/0xd0 returned 0 after 3906 usecs
[ 0.267333] calling init_cgroup_netprio+0x0/0x20 @ 1
[ 0.267346] initcall init_cgroup_netprio+0x0/0x20 returned 0 after 0 usecs
[ 0.267360] calling pktsched_init+0x0/0x12c @ 1
[ 0.267389] initcall pktsched_init+0x0/0x12c returned 0 after 0 usecs
[ 0.267404] calling tc_filter_init+0x0/0x74 @ 1
[ 0.267415] initcall tc_filter_init+0x0/0x74 returned 0 after 0 usecs
[ 0.267429] calling tc_action_init+0x0/0x74 @ 1
[ 0.267440] initcall tc_action_init+0x0/0x74 returned 0 after 0 usecs
[ 0.267453] calling genl_init+0x0/0x88 @ 1
[ 0.267511] initcall genl_init+0x0/0x88 returned 0 after 0 usecs
[ 0.267529] calling cipso_v4_init+0x0/0x70 @ 1
[ 0.267543] initcall cipso_v4_init+0x0/0x70 returned 0 after 0 usecs
[ 0.267557] calling wireless_nlevent_init+0x0/0x1c @ 1
[ 0.267568] initcall wireless_nlevent_init+0x0/0x1c returned 0 after 0 usecs
[ 0.267579] calling netlbl_init+0x0/0x90 @ 1
[ 0.267584] NetLabel: Initializing
[ 0.267590] NetLabel: domain hash size = 128
[ 0.267595] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.267671] NetLabel: unlabeled traffic allowed by default
[ 0.267685] initcall netlbl_init+0x0/0x90 returned 0 after 0 usecs
[ 0.267697] calling rfkill_init+0x0/0x90 @ 1
[ 0.268031] initcall rfkill_init+0x0/0x90 returned 0 after 0 usecs
[ 0.268222] calling proc_cpu_init+0x0/0x2c @ 1
[ 0.268249] initcall proc_cpu_init+0x0/0x2c returned 0 after 0 usecs
[ 0.268263] calling dma_debug_do_init+0x0/0x14 @ 1
[ 0.268273] initcall dma_debug_do_init+0x0/0x14 returned 0 after 0 usecs
[ 0.268286] calling alignment_init+0x0/0xec @ 1
[ 0.268305] initcall alignment_init+0x0/0xec returned 0 after 0 usecs
[ 0.268328] calling clocksource_done_booting+0x0/0x4c @ 1
[ 0.268403] Switched to clocksource timer1
[ 0.268417] initcall clocksource_done_booting+0x0/0x4c returned 0 after 34 usecs
[ 0.268438] calling ftrace_init_debugfs+0x0/0x218 @ 1
[ 0.268564] initcall ftrace_init_debugfs+0x0/0x218 returned 0 after 107 usecs
[ 0.268583] calling tracer_init_debugfs+0x0/0x20c @ 1
[ 0.268983] initcall tracer_init_debugfs+0x0/0x20c returned 0 after 374 usecs
[ 0.269005] calling init_trace_printk_function_export+0x0/0x48 @ 1
[ 0.269027] initcall init_trace_printk_function_export+0x0/0x48 returned 0 after 9 usecs
[ 0.269040] calling init_graph_debugfs+0x0/0x48 @ 1
[ 0.269058] initcall init_graph_debugfs+0x0/0x48 returned 0 after 8 usecs
[ 0.269070] calling event_trace_init+0x0/0x260 @ 1
[ 0.318348] initcall event_trace_init+0x0/0x260 returned 0 after 48070 usecs
[ 0.318388] calling init_kprobe_trace+0x0/0xb0 @ 1
[ 0.318427] initcall init_kprobe_trace+0x0/0xb0 returned 0 after 26 usecs
[ 0.318442] calling init_uprobe_trace+0x0/0x6c @ 1
[ 0.318482] initcall init_uprobe_trace+0x0/0x6c returned 0 after 27 usecs
[ 0.318506] calling init_pipe_fs+0x0/0x60 @ 1
[ 0.318604] initcall init_pipe_fs+0x0/0x60 returned 0 after 83 usecs
[ 0.318624] calling eventpoll_init+0x0/0xfc @ 1
[ 0.318697] initcall eventpoll_init+0x0/0xfc returned 0 after 57 usecs
[ 0.318713] calling anon_inode_init+0x0/0x74 @ 1
[ 0.318755] initcall anon_inode_init+0x0/0x74 returned 0 after 29 usecs
[ 0.318773] calling proc_cmdline_init+0x0/0x40 @ 1
[ 0.318802] initcall proc_cmdline_init+0x0/0x40 returned 0 after 17 usecs
[ 0.318820] calling proc_consoles_init+0x0/0x40 @ 1
[ 0.318837] initcall proc_consoles_init+0x0/0x40 returned 0 after 6 usecs
[ 0.318852] calling proc_cpuinfo_init+0x0/0x40 @ 1
[ 0.318867] initcall proc_cpuinfo_init+0x0/0x40 returned 0 after 4 usecs
[ 0.318883] calling proc_devices_init+0x0/0x40 @ 1
[ 0.318898] initcall proc_devices_init+0x0/0x40 returned 0 after 4 usecs
[ 0.318913] calling proc_interrupts_init+0x0/0x40 @ 1
[ 0.318937] initcall proc_interrupts_init+0x0/0x40 returned 0 after 12 usecs
[ 0.318953] calling proc_loadavg_init+0x0/0x40 @ 1
[ 0.318968] initcall proc_loadavg_init+0x0/0x40 returned 0 after 4 usecs
[ 0.318984] calling proc_meminfo_init+0x0/0x40 @ 1
[ 0.318999] initcall proc_meminfo_init+0x0/0x40 returned 0 after 4 usecs
[ 0.319014] calling proc_stat_init+0x0/0x40 @ 1
[ 0.319032] initcall proc_stat_init+0x0/0x40 returned 0 after 7 usecs
[ 0.319048] calling proc_uptime_init+0x0/0x40 @ 1
[ 0.319063] initcall proc_uptime_init+0x0/0x40 returned 0 after 4 usecs
[ 0.319078] calling proc_version_init+0x0/0x40 @ 1
[ 0.319093] initcall proc_version_init+0x0/0x40 returned 0 after 4 usecs
[ 0.319105] calling proc_softirqs_init+0x0/0x40 @ 1
[ 0.319119] initcall proc_softirqs_init+0x0/0x40 returned 0 after 4 usecs
[ 0.319131] calling vmcore_init+0x0/0x4c4 @ 1
[ 0.319142] initcall vmcore_init+0x0/0x4c4 returned 0 after 2 usecs
[ 0.319154] calling proc_kmsg_init+0x0/0x40 @ 1
[ 0.319168] initcall proc_kmsg_init+0x0/0x40 returned 0 after 4 usecs
[ 0.319179] calling proc_page_init+0x0/0x60 @ 1
[ 0.319196] initcall proc_page_init+0x0/0x60 returned 0 after 8 usecs
[ 0.319217] calling init_ramfs_fs+0x0/0x70 @ 1
[ 0.319229] initcall init_ramfs_fs+0x0/0x70 returned 0 after 1 usecs
[ 0.319246] calling tomoyo_initerface_init+0x0/0x180 @ 1
[ 0.319257] initcall tomoyo_initerface_init+0x0/0x180 returned 0 after 1 usecs
[ 0.319271] calling aa_create_aafs+0x0/0x220 @ 1
[ 0.319645] AppArmor: AppArmor Filesystem Enabled
[ 0.319664] initcall aa_create_aafs+0x0/0x220 returned 0 after 369 usecs
[ 0.319686] calling blk_scsi_ioctl_init+0x0/0xe4 @ 1
[ 0.319699] initcall blk_scsi_ioctl_init+0x0/0xe4 returned 0 after 1 usecs
[ 0.319713] calling dynamic_debug_init_debugfs+0x0/0x88 @ 1
[ 0.319748] initcall dynamic_debug_init_debugfs+0x0/0x88 returned 0 after 22 usecs
[ 0.319764] calling mvebu_mbus_debugfs_init+0x0/0x98 @ 1
[ 0.319775] initcall mvebu_mbus_debugfs_init+0x0/0x98 returned 0 after 1 usecs
[ 0.319795] calling fb_console_init+0x0/0x15c @ 1
[ 0.320008] initcall fb_console_init+0x0/0x15c returned 0 after 193 usecs
[ 0.320026] calling simplefb_init+0x0/0x88 @ 1
[ 0.320270] initcall simplefb_init+0x0/0x88 returned 0 after 220 usecs
[ 0.320289] calling chr_dev_init+0x0/0xdc @ 1
[ 0.332300] initcall chr_dev_init+0x0/0xdc returned 0 after 11695 usecs
[ 0.332337] calling firmware_class_init+0x0/0xac @ 1
[ 0.332352] initcall firmware_class_init+0x0/0xac returned 0 after 4 usecs
[ 0.332369] calling omap_usbtll_drvinit+0x0/0x20 @ 1
[ 0.332672] initcall omap_usbtll_drvinit+0x0/0x20 returned 0 after 277 usecs
[ 0.332691] calling thermal_init+0x0/0xbc @ 1
[ 0.332882] initcall thermal_init+0x0/0xbc returned 0 after 170 usecs
[ 0.332901] calling cpufreq_gov_performance_init+0x0/0x1c @ 1
[ 0.332916] initcall cpufreq_gov_performance_init+0x0/0x1c returned 0 after 3 usecs
[ 0.332938] calling sysctl_core_init+0x0/0x38 @ 1
[ 0.333003] initcall sysctl_core_init+0x0/0x38 returned 0 after 52 usecs
[ 0.333022] calling inet_init+0x0/0x28c @ 1
[ 0.333116] NET: Registered protocol family 2
[ 0.334151] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.334202] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.334263] TCP: Hash tables configured (established 4096 bind 4096)
[ 0.334332] TCP: reno registered
[ 0.334345] UDP hash table entries: 256 (order: 1, 8192 bytes)
[ 0.334365] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[ 0.334572] initcall inet_init+0x0/0x28c returned 0 after 1486 usecs
[ 0.334593] calling ipv4_offload_init+0x0/0x70 @ 1
[ 0.334608] initcall ipv4_offload_init+0x0/0x70 returned 0 after 3 usecs
[ 0.334623] calling af_unix_init+0x0/0x5c @ 1
[ 0.334637] NET: Registered protocol family 1
[ 0.334679] initcall af_unix_init+0x0/0x5c returned 0 after 40 usecs
[ 0.334693] calling ipv6_offload_init+0x0/0x90 @ 1
[ 0.334707] initcall ipv6_offload_init+0x0/0x90 returned 0 after 4 usecs
[ 0.334729] calling pci_apply_final_quirks+0x0/0x11c @ 1
[ 0.334742] PCI: CLS 0 bytes, default 64
[ 0.334752] initcall pci_apply_final_quirks+0x0/0x11c returned 0 after 12 usecs
[ 0.334772] calling omap_usbhs_drvinit+0x0/0x28 @ 1
[ 0.335021] initcall omap_usbhs_drvinit+0x0/0x28 returned -19 after 227 usecs
[ 0.335048] calling populate_rootfs+0x0/0x278 @ 1
[ 0.335390] Trying to unpack rootfs image as initramfs...
[ 8.298345] sched: RT throttling activated
[ 8.771283] Freeing initrd memory: 13236K (de93c000 - df629000)
[ 8.771338] initcall populate_rootfs+0x0/0x278 returned 0 after 8238530 usecs
[ 8.771547] calling arch_uprobes_init+0x0/0x34 @ 1
[ 8.771563] initcall arch_uprobes_init+0x0/0x34 returned 0 after 2 usecs
[ 8.771576] calling register_pmu_driver+0x0/0x20 @ 1
[ 8.771901] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available
[ 8.772233] initcall register_pmu_driver+0x0/0x20 returned 0 after 623 usecs
[ 8.772259] calling armada_xp_pmsu_cpufreq_init+0x0/0x190 @ 1
[ 8.772274] initcall armada_xp_pmsu_cpufreq_init+0x0/0x190 returned 0 after 4 usecs
[ 8.772293] calling __omap_feed_randpool+0x0/0x44 @ 1
[ 8.772317] initcall __omap_feed_randpool+0x0/0x44 returned 0 after 12 usecs
[ 8.772333] calling __omap3_opp_init+0x0/0x20 @ 1
[ 8.772344] initcall __omap3_opp_init+0x0/0x20 returned -19 after 1 usecs
[ 8.772356] calling __omap4_opp_init+0x0/0x20 @ 1
[ 8.772366] initcall __omap4_opp_init+0x0/0x20 returned -19 after 0 usecs
[ 8.772485] calling __beagle_opp_init+0x0/0x134 @ 1
[ 8.772499] initcall __beagle_opp_init+0x0/0x134 returned 0 after 0 usecs
[ 8.772521] calling ve_spc_clk_init+0x0/0x274 @ 1
[ 8.772533] initcall ve_spc_clk_init+0x0/0x274 returned 0 after 1 usecs
[ 8.772549] calling omap_dm_timer_driver_init+0x0/0x20 @ 1
[ 8.773341] initcall omap_dm_timer_driver_init+0x0/0x20 returned 0 after 748 usecs
[ 8.773362] calling proc_execdomains_init+0x0/0x40 @ 1
[ 8.773387] initcall proc_execdomains_init+0x0/0x40 returned 0 after 14 usecs
[ 8.773400] calling ioresources_init+0x0/0x60 @ 1
[ 8.773421] initcall ioresources_init+0x0/0x60 returned 0 after 11 usecs
[ 8.773439] calling init_sched_debug_procfs+0x0/0x44 @ 1
[ 8.773454] initcall init_sched_debug_procfs+0x0/0x44 returned 0 after 5 usecs
[ 8.773468] calling snapshot_device_init+0x0/0x1c @ 1
[ 8.773770] initcall snapshot_device_init+0x0/0x1c returned 0 after 278 usecs
[ 8.773790] calling irq_gc_init_ops+0x0/0x20 @ 1
[ 8.773802] initcall irq_gc_init_ops+0x0/0x20 returned 0 after 1 usecs
[ 8.773815] calling irq_pm_init_ops+0x0/0x20 @ 1
[ 8.773826] initcall irq_pm_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 8.773840] calling init_posix_timers+0x0/0x234 @ 1
[ 8.773937] initcall init_posix_timers+0x0/0x234 returned 0 after 81 usecs
[ 8.773952] calling init_posix_cpu_timers+0x0/0xe0 @ 1
[ 8.773965] initcall init_posix_cpu_timers+0x0/0xe0 returned 0 after 2 usecs
[ 8.773978] calling timekeeping_init_ops+0x0/0x20 @ 1
[ 8.773989] initcall timekeeping_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 8.774004] calling init_clocksource_sysfs+0x0/0x7c @ 1
[ 8.774266] initcall init_clocksource_sysfs+0x0/0x7c returned 0 after 241 usecs
[ 8.774284] calling init_timer_list_procfs+0x0/0x44 @ 1
[ 8.774302] initcall init_timer_list_procfs+0x0/0x44 returned 0 after 7 usecs
[ 8.774316] calling alarmtimer_init+0x0/0x194 @ 1
[ 8.774692] initcall alarmtimer_init+0x0/0x194 returned 0 after 348 usecs
[ 8.774716] calling clockevents_init_sysfs+0x0/0xe4 @ 1
[ 8.775026] initcall clockevents_init_sysfs+0x0/0xe4 returned 0 after 290 usecs
[ 8.775043] calling sched_clock_syscore_init+0x0/0x20 @ 1
[ 8.775055] initcall sched_clock_syscore_init+0x0/0x20 returned 0 after 1 usecs
[ 8.775069] calling init_tstats_procfs+0x0/0x44 @ 1
[ 8.775088] initcall init_tstats_procfs+0x0/0x44 returned 0 after 7 usecs
[ 8.775103] calling futex_init+0x0/0x100 @ 1
[ 8.775124] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 8.775149] initcall futex_init+0x0/0x100 returned 0 after 35 usecs
[ 8.775164] calling system_trusted_keyring_init+0x0/0x98 @ 1
[ 8.775171] Initialise system trusted keyring
[ 8.775234] initcall system_trusted_keyring_init+0x0/0x98 returned 0 after 55 usecs
[ 8.775250] calling proc_modules_init+0x0/0x40 @ 1
[ 8.775271] initcall proc_modules_init+0x0/0x40 returned 0 after 9 usecs
[ 8.775286] calling kallsyms_init+0x0/0x40 @ 1
[ 8.775302] initcall kallsyms_init+0x0/0x40 returned 0 after 5 usecs
[ 8.775318] calling pid_namespaces_init+0x0/0x58 @ 1
[ 8.775387] initcall pid_namespaces_init+0x0/0x58 returned 0 after 55 usecs
[ 8.775403] calling audit_init+0x0/0xe4 @ 1
[ 8.775411] audit: initializing netlink subsys (disabled)
[ 8.775524] audit: type=2000 audit(8.728:1): initialized
[ 8.775546] initcall audit_init+0x0/0xe4 returned 0 after 127 usecs
[ 8.775562] calling audit_watch_init+0x0/0x48 @ 1
[ 8.775575] initcall audit_watch_init+0x0/0x48 returned 0 after 2 usecs
[ 8.775589] calling audit_tree_init+0x0/0x64 @ 1
[ 8.775602] initcall audit_tree_init+0x0/0x64 returned 0 after 1 usecs
[ 8.775615] calling init_kprobes+0x0/0x17c @ 1
[ 8.775681] initcall init_kprobes+0x0/0x17c returned 0 after 52 usecs
[ 8.775698] calling utsname_sysctl_init+0x0/0x20 @ 1
[ 8.775729] initcall utsname_sysctl_init+0x0/0x20 returned 0 after 19 usecs
[ 8.775744] calling init_tracepoints+0x0/0x34 @ 1
[ 8.775756] initcall init_tracepoints+0x0/0x34 returned 0 after 1 usecs
[ 8.775767] calling stack_trace_init+0x0/0xd4 @ 1
[ 8.775837] initcall stack_trace_init+0x0/0xd4 returned 0 after 57 usecs
[ 8.775851] calling init_blk_tracer+0x0/0x64 @ 1
[ 8.775874] initcall init_blk_tracer+0x0/0x64 returned 0 after 13 usecs
[ 8.775890] calling perf_event_sysfs_init+0x0/0xb4 @ 1
[ 8.776374] initcall perf_event_sysfs_init+0x0/0xb4 returned 0 after 457 usecs
[ 8.776492] calling init_uprobes+0x0/0x70 @ 1
[ 8.776514] initcall init_uprobes+0x0/0x70 returned 0 after 10 usecs
[ 8.776531] calling init_per_zone_wmark_min+0x0/0xc4 @ 1
[ 8.776903] initcall init_per_zone_wmark_min+0x0/0xc4 returned 0 after 345 usecs
[ 8.776923] calling kswapd_init+0x0/0x2c @ 1
[ 8.777215] initcall kswapd_init+0x0/0x2c returned 0 after 262 usecs
[ 8.777237] calling extfrag_debug_init+0x0/0x9c @ 1
[ 8.777296] initcall extfrag_debug_init+0x0/0x9c returned 0 after 45 usecs
[ 8.777311] calling setup_vmstat+0x0/0x1b4 @ 1
[ 8.777372] initcall setup_vmstat+0x0/0x1b4 returned 0 after 47 usecs
[ 8.777387] calling mm_compute_batch_init+0x0/0x64 @ 1
[ 8.777398] initcall mm_compute_batch_init+0x0/0x64 returned 0 after 1 usecs
[ 8.777413] calling slab_proc_init+0x0/0x40 @ 1
[ 8.777429] initcall slab_proc_init+0x0/0x40 returned 0 after 5 usecs
[ 8.777443] calling workingset_init+0x0/0x54 @ 1
[ 8.777458] initcall workingset_init+0x0/0x54 returned 0 after 4 usecs
[ 8.777472] calling proc_vmalloc_init+0x0/0x40 @ 1
[ 8.777487] initcall proc_vmalloc_init+0x0/0x40 returned 0 after 4 usecs
[ 8.777503] calling memblock_init_debugfs+0x0/0x80 @ 1
[ 8.777548] initcall memblock_init_debugfs+0x0/0x80 returned 0 after 31 usecs
[ 8.777564] calling procswaps_init+0x0/0x40 @ 1
[ 8.777584] initcall procswaps_init+0x0/0x40 returned 0 after 9 usecs
[ 8.777598] calling init_frontswap+0x0/0xa4 @ 1
[ 8.777661] initcall init_frontswap+0x0/0xa4 returned 0 after 49 usecs
[ 8.777677] calling slab_sysfs_init+0x0/0x11c @ 1
[ 8.789083] initcall slab_sysfs_init+0x0/0x11c returned 0 after 11099 usecs
[ 8.789114] calling init_cleancache+0x0/0xd0 @ 1
[ 8.789195] initcall init_cleancache+0x0/0xd0 returned 0 after 65 usecs
[ 8.789210] calling init_zpool+0x0/0x20 @ 1
[ 8.789216] zpool: loaded
[ 8.789225] initcall init_zpool+0x0/0x20 returned 0 after 5 usecs
[ 8.789239] calling init_zbud+0x0/0x2c @ 1
[ 8.789245] zbud: loaded
[ 8.789256] initcall init_zbud+0x0/0x2c returned 0 after 6 usecs
[ 8.789269] calling zs_init+0x0/0xb8 @ 1
[ 8.789308] initcall zs_init+0x0/0xb8 returned 0 after 26 usecs
[ 8.789324] calling fcntl_init+0x0/0x48 @ 1
[ 8.789362] initcall fcntl_init+0x0/0x48 returned 0 after 26 usecs
[ 8.789379] calling proc_filesystems_init+0x0/0x40 @ 1
[ 8.789406] initcall proc_filesystems_init+0x0/0x40 returned 0 after 14 usecs
[ 8.789423] calling dio_init+0x0/0x48 @ 1
[ 8.789668] initcall dio_init+0x0/0x48 returned 0 after 226 usecs
[ 8.789687] calling fsnotify_mark_init+0x0/0x48 @ 1
[ 8.789925] initcall fsnotify_mark_init+0x0/0x48 returned 0 after 211 usecs
[ 8.789948] calling dnotify_init+0x0/0x8c @ 1
[ 8.789997] initcall dnotify_init+0x0/0x8c returned 0 after 35 usecs
[ 8.790014] calling inotify_user_setup+0x0/0x5c @ 1
[ 8.790036] initcall inotify_user_setup+0x0/0x5c returned 0 after 11 usecs
[ 8.790052] calling fanotify_user_setup+0x0/0x88 @ 1
[ 8.790100] initcall fanotify_user_setup+0x0/0x88 returned 0 after 35 usecs
[ 8.790115] calling aio_setup+0x0/0xdc @ 1
[ 8.790213] initcall aio_setup+0x0/0xdc returned 0 after 83 usecs
[ 8.790230] calling proc_locks_init+0x0/0x40 @ 1
[ 8.790252] initcall proc_locks_init+0x0/0x40 returned 0 after 9 usecs
[ 8.790268] calling init_mbcache+0x0/0x20 @ 1
[ 8.790280] initcall init_mbcache+0x0/0x20 returned 0 after 1 usecs
[ 8.790295] calling dquot_init+0x0/0x130 @ 1
[ 8.790301] VFS: Disk quotas dquot_6.5.2
[ 8.790569] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 8.790586] initcall dquot_init+0x0/0x130 returned 0 after 270 usecs
[ 8.790602] calling quota_init+0x0/0x40 @ 1
[ 8.790664] initcall quota_init+0x0/0x40 returned 0 after 49 usecs
[ 8.790679] calling proc_version_signature_init+0x0/0x40 @ 1
[ 8.790698] initcall proc_version_signature_init+0x0/0x40 returned 0 after 8 usecs
[ 8.790710] calling init_devpts_fs+0x0/0x78 @ 1
[ 8.790800] initcall init_devpts_fs+0x0/0x78 returned 0 after 76 usecs
[ 8.790822] calling ext4_init_fs+0x0/0x274 @ 1
[ 8.791844] initcall ext4_init_fs+0x0/0x274 returned 0 after 982 usecs
[ 8.791865] calling journal_init+0x0/0x120 @ 1
[ 8.792139] initcall journal_init+0x0/0x120 returned 0 after 254 usecs
[ 8.792156] calling init_fat_fs+0x0/0x6c @ 1
[ 8.792677] initcall init_fat_fs+0x0/0x6c returned 0 after 490 usecs
[ 8.792694] calling init_vfat_fs+0x0/0x1c @ 1
[ 8.792710] initcall init_vfat_fs+0x0/0x1c returned 0 after 4 usecs
[ 8.792723] calling ecryptfs_init+0x0/0x1c8 @ 1
[ 8.794045] initcall ecryptfs_init+0x0/0x1c8 returned 0 after 1266 usecs
[ 8.794070] calling init_nls_cp437+0x0/0x20 @ 1
[ 8.794082] initcall init_nls_cp437+0x0/0x20 returned 0 after 1 usecs
[ 8.794095] calling fuse_init+0x0/0x1dc @ 1
[ 8.794103] fuse init (API version 7.23)
[ 8.794716] initcall fuse_init+0x0/0x1dc returned 0 after 588 usecs
[ 8.794735] calling init_pstore_fs+0x0/0x60 @ 1
[ 8.794758] initcall init_pstore_fs+0x0/0x60 returned 0 after 11 usecs
[ 8.794772] calling ipc_init+0x0/0x20 @ 1
[ 8.794803] initcall ipc_init+0x0/0x20 returned 0 after 20 usecs
[ 8.794818] calling ipc_sysctl_init+0x0/0x20 @ 1
[ 8.794867] initcall ipc_sysctl_init+0x0/0x20 returned 0 after 37 usecs
[ 8.794881] calling init_mqueue_fs+0x0/0xc0 @ 1
[ 8.795182] initcall init_mqueue_fs+0x0/0xc0 returned 0 after 278 usecs
[ 8.795200] calling key_proc_init+0x0/0x88 @ 1
[ 8.795226] initcall key_proc_init+0x0/0x88 returned 0 after 14 usecs
[ 8.795240] calling big_key_init+0x0/0x1c @ 1
[ 8.795251] Key type big_key registered
[ 8.795260] initcall big_key_init+0x0/0x1c returned 0 after 10 usecs
[ 8.795274] calling selinux_nf_ip_init+0x0/0x58 @ 1
[ 8.795285] initcall selinux_nf_ip_init+0x0/0x58 returned 0 after 1 usecs
[ 8.795298] calling init_sel_fs+0x0/0xb4 @ 1
[ 8.795308] initcall init_sel_fs+0x0/0xb4 returned 0 after 0 usecs
[ 8.795321] calling selnl_init+0x0/0x70 @ 1
[ 8.795367] initcall selnl_init+0x0/0x70 returned 0 after 34 usecs
[ 8.795381] calling sel_netif_init+0x0/0x58 @ 1
[ 8.795392] initcall sel_netif_init+0x0/0x58 returned 0 after 0 usecs
[ 8.795406] calling sel_netnode_init+0x0/0x50 @ 1
[ 8.795416] initcall sel_netnode_init+0x0/0x50 returned 0 after 0 usecs
[ 8.795430] calling sel_netport_init+0x0/0x50 @ 1
[ 8.795440] initcall sel_netport_init+0x0/0x50 returned 0 after 0 usecs
[ 8.795453] calling aurule_init+0x0/0x30 @ 1
[ 8.795464] initcall aurule_init+0x0/0x30 returned 0 after 1 usecs
[ 8.795477] calling init_smk_fs+0x0/0x17c @ 1
[ 8.795488] initcall init_smk_fs+0x0/0x17c returned 0 after 1 usecs
[ 8.795504] calling crypto_algapi_init+0x0/0x18 @ 1
[ 8.795523] initcall crypto_algapi_init+0x0/0x18 returned 0 after 8 usecs
[ 8.795538] calling chainiv_module_init+0x0/0x1c @ 1
[ 8.795553] initcall chainiv_module_init+0x0/0x1c returned 0 after 4 usecs
[ 8.795567] calling eseqiv_module_init+0x0/0x1c @ 1
[ 8.795579] initcall eseqiv_module_init+0x0/0x1c returned 0 after 1 usecs
[ 8.795594] calling hmac_module_init+0x0/0x1c @ 1
[ 8.795605] initcall hmac_module_init+0x0/0x1c returned 0 after 1 usecs
[ 8.795620] calling md5_mod_init+0x0/0x1c @ 1
[ 8.795936] initcall md5_mod_init+0x0/0x1c returned 0 after 289 usecs
[ 8.795959] calling sha1_generic_mod_init+0x0/0x1c @ 1
[ 8.796090] initcall sha1_generic_mod_init+0x0/0x1c returned 0 after 110 usecs
[ 8.796109] calling sha256_generic_mod_init+0x0/0x20 @ 1
[ 8.796477] initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 340 usecs
[ 8.796500] calling sha512_generic_mod_init+0x0/0x20 @ 1
[ 8.796790] initcall sha512_generic_mod_init+0x0/0x20 returned 0 after 264 usecs
[ 8.796811] calling crypto_ecb_module_init+0x0/0x1c @ 1
[ 8.796824] initcall crypto_ecb_module_init+0x0/0x1c returned 0 after 2 usecs
[ 8.796840] calling crypto_cbc_module_init+0x0/0x1c @ 1
[ 8.796851] initcall crypto_cbc_module_init+0x0/0x1c returned 0 after 1 usecs
[ 8.796865] calling aes_init+0x0/0x1c @ 1
[ 8.797020] initcall aes_init+0x0/0x1c returned 0 after 136 usecs
[ 8.797040] calling crc32c_mod_init+0x0/0x1c @ 1
[ 8.797180] initcall crc32c_mod_init+0x0/0x1c returned 0 after 122 usecs
[ 8.797199] calling crct10dif_mod_init+0x0/0x1c @ 1
[ 8.797335] initcall crct10dif_mod_init+0x0/0x1c returned 0 after 119 usecs
[ 8.797353] calling lzo_mod_init+0x0/0x1c @ 1
[ 8.797501] initcall lzo_mod_init+0x0/0x1c returned 0 after 129 usecs
[ 8.797519] calling krng_mod_init+0x0/0x1c @ 1
[ 8.797661] initcall krng_mod_init+0x0/0x1c returned 0 after 123 usecs
[ 8.797681] calling asymmetric_key_init+0x0/0x1c @ 1
[ 8.797692] Key type asymmetric registered
[ 8.797703] initcall asymmetric_key_init+0x0/0x1c returned 0 after 10 usecs
[ 8.797718] calling x509_key_init+0x0/0x1c @ 1
[ 8.797726] Asymmetric key parser 'x509' registered
[ 8.797736] initcall x509_key_init+0x0/0x1c returned 0 after 8 usecs
[ 8.797753] calling proc_genhd_init+0x0/0x60 @ 1
[ 8.797788] initcall proc_genhd_init+0x0/0x60 returned 0 after 23 usecs
[ 8.797806] calling init_emergency_pool+0x0/0x78 @ 1
[ 8.797817] initcall init_emergency_pool+0x0/0x78 returned 0 after 1 usecs
[ 8.797832] calling bsg_init+0x0/0x148 @ 1
[ 8.797930] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 8.797947] initcall bsg_init+0x0/0x148 returned 0 after 99 usecs
[ 8.797963] calling throtl_init+0x0/0x60 @ 1
[ 8.798189] initcall throtl_init+0x0/0x60 returned 0 after 203 usecs
[ 8.798210] calling noop_init+0x0/0x1c @ 1
[ 8.798221] io scheduler noop registered
[ 8.798231] initcall noop_init+0x0/0x1c returned 0 after 10 usecs
[ 8.798246] calling deadline_init+0x0/0x1c @ 1
[ 8.798254] io scheduler deadline registered (default)
[ 8.798264] initcall deadline_init+0x0/0x1c returned 0 after 7 usecs
[ 8.798274] calling cfq_init+0x0/0xdc @ 1
[ 8.798525] io scheduler cfq registered
[ 8.798539] initcall cfq_init+0x0/0xdc returned 0 after 247 usecs
[ 8.798553] calling btree_module_init+0x0/0x48 @ 1
[ 8.798574] initcall btree_module_init+0x0/0x48 returned 0 after 10 usecs
[ 8.798587] calling crc_t10dif_mod_init+0x0/0x50 @ 1
[ 8.798607] initcall crc_t10dif_mod_init+0x0/0x50 returned 0 after 9 usecs
[ 8.798619] calling percpu_counter_startup+0x0/0x24 @ 1
[ 8.798639] initcall percpu_counter_startup+0x0/0x24 returned 0 after 10 usecs
[ 8.798651] calling audit_classes_init+0x0/0x58 @ 1
[ 8.798666] initcall audit_classes_init+0x0/0x58 returned 0 after 5 usecs
[ 8.798678] calling digsig_init+0x0/0x50 @ 1
[ 8.798691] initcall digsig_init+0x0/0x50 returned 0 after 3 usecs
[ 8.798705] calling brcm_gisb_driver_init+0x0/0x28 @ 1
[ 8.799014] initcall brcm_gisb_driver_init+0x0/0x28 returned -19 after 288 usecs
[ 8.799030] calling weim_driver_init+0x0/0x28 @ 1
[ 8.799203] initcall weim_driver_init+0x0/0x28 returned -19 after 156 usecs
[ 8.799218] calling arm_ccn_init+0x0/0x4c @ 1
[ 8.799318] initcall arm_ccn_init+0x0/0x4c returned 0 after 86 usecs
[ 8.799332] calling phy_core_init+0x0/0x60 @ 1
[ 8.799365] initcall phy_core_init+0x0/0x60 returned 0 after 21 usecs
[ 8.799380] calling armada375_usb_phy_driver_init+0x0/0x20 @ 1
[ 8.799476] initcall armada375_usb_phy_driver_init+0x0/0x20 returned 0 after 81 usecs
[ 8.799492] calling exynos_dp_video_phy_driver_init+0x0/0x20 @ 1
[ 8.799599] initcall exynos_dp_video_phy_driver_init+0x0/0x20 returned 0 after 92 usecs
[ 8.799614] calling exynos_mipi_video_phy_driver_init+0x0/0x20 @ 1
[ 8.799708] initcall exynos_mipi_video_phy_driver_init+0x0/0x20 returned 0 after 80 usecs
[ 8.799723] calling phy_mvebu_sata_driver_init+0x0/0x20 @ 1
[ 8.799813] initcall phy_mvebu_sata_driver_init+0x0/0x20 returned 0 after 76 usecs
[ 8.799828] calling exynos_sata_phy_driver_init+0x0/0x20 @ 1
[ 8.799921] initcall exynos_sata_phy_driver_init+0x0/0x20 returned 0 after 79 usecs
[ 8.799935] calling as3722_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.800027] initcall as3722_pinctrl_driver_init+0x0/0x20 returned 0 after 78 usecs
[ 8.800042] calling palmas_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.800174] initcall palmas_pinctrl_driver_init+0x0/0x20 returned 0 after 117 usecs
[ 8.800188] calling pcs_driver_init+0x0/0x20 @ 1
[ 8.800792] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568
[ 8.801006] initcall pcs_driver_init+0x0/0x20 returned 0 after 780 usecs
[ 8.801026] calling tegra20_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801149] initcall tegra20_pinctrl_driver_init+0x0/0x20 returned 0 after 108 usecs
[ 8.801165] calling tegra30_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801263] initcall tegra30_pinctrl_driver_init+0x0/0x20 returned 0 after 83 usecs
[ 8.801278] calling tegra114_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801376] initcall tegra114_pinctrl_driver_init+0x0/0x20 returned 0 after 83 usecs
[ 8.801392] calling tegra124_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801485] initcall tegra124_pinctrl_driver_init+0x0/0x20 returned 0 after 80 usecs
[ 8.801500] calling tegra_xusb_padctl_driver_init+0x0/0x20 @ 1
[ 8.801594] initcall tegra_xusb_padctl_driver_init+0x0/0x20 returned 0 after 79 usecs
[ 8.801608] calling berlin2_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801717] initcall berlin2_pinctrl_driver_init+0x0/0x20 returned 0 after 93 usecs
[ 8.801732] calling berlin2cd_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801837] initcall berlin2cd_pinctrl_driver_init+0x0/0x20 returned 0 after 91 usecs
[ 8.801852] calling berlin2q_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.801960] initcall berlin2q_pinctrl_driver_init+0x0/0x20 returned 0 after 94 usecs
[ 8.801975] calling dove_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.802069] initcall dove_pinctrl_driver_init+0x0/0x20 returned 0 after 79 usecs
[ 8.802084] calling armada_370_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.802178] initcall armada_370_pinctrl_driver_init+0x0/0x20 returned 0 after 80 usecs
[ 8.802193] calling armada_375_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.802296] initcall armada_375_pinctrl_driver_init+0x0/0x20 returned 0 after 89 usecs
[ 8.802312] calling armada_38x_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.802431] initcall armada_38x_pinctrl_driver_init+0x0/0x20 returned 0 after 105 usecs
[ 8.802447] calling armada_xp_pinctrl_driver_init+0x0/0x20 @ 1
[ 8.802565] initcall armada_xp_pinctrl_driver_init+0x0/0x20 returned 0 after 103 usecs
[ 8.802580] calling bgpio_driver_init+0x0/0x20 @ 1
[ 8.802657] initcall bgpio_driver_init+0x0/0x20 returned 0 after 64 usecs
[ 8.802672] calling mvebu_gpio_driver_init+0x0/0x20 @ 1
[ 8.802791] initcall mvebu_gpio_driver_init+0x0/0x20 returned 0 after 104 usecs
[ 8.802806] calling pl061_gpio_init+0x0/0x1c @ 1
[ 8.802853] initcall pl061_gpio_init+0x0/0x1c returned 0 after 35 usecs
[ 8.802868] calling gpo_twl6040_driver_init+0x0/0x20 @ 1
[ 8.802938] initcall gpo_twl6040_driver_init+0x0/0x20 returned 0 after 57 usecs
[ 8.802952] calling gpio_vf610_init+0x0/0x20 @ 1
[ 8.803044] initcall gpio_vf610_init+0x0/0x20 returned 0 after 78 usecs
[ 8.803059] calling zevio_gpio_driver_init+0x0/0x20 @ 1
[ 8.803153] initcall zevio_gpio_driver_init+0x0/0x20 returned 0 after 80 usecs
[ 8.803168] calling pwmss_driver_init+0x0/0x20 @ 1
[ 8.803265] initcall pwmss_driver_init+0x0/0x20 returned 0 after 84 usecs
[ 8.803281] calling pci_proc_init+0x0/0x88 @ 1
[ 8.803311] initcall pci_proc_init+0x0/0x88 returned 0 after 18 usecs
[ 8.803326] calling pcie_portdrv_init+0x0/0x90 @ 1
[ 8.803479] initcall pcie_portdrv_init+0x0/0x90 returned 0 after 137 usecs
[ 8.803496] calling aer_service_init+0x0/0x44 @ 1
[ 8.803549] initcall aer_service_init+0x0/0x44 returned 0 after 40 usecs
[ 8.803564] calling pcie_pme_service_init+0x0/0x1c @ 1
[ 8.803608] initcall pcie_pme_service_init+0x0/0x1c returned 0 after 31 usecs
[ 8.803623] calling dra7xx_pcie_driver_init+0x0/0x28 @ 1
[ 8.803751] initcall dra7xx_pcie_driver_init+0x0/0x28 returned -19 after 111 usecs
[ 8.803768] calling imx6_pcie_init+0x0/0x28 @ 1
[ 8.803879] initcall imx6_pcie_init+0x0/0x28 returned -19 after 95 usecs
[ 8.803895] calling mvebu_pcie_driver_init+0x0/0x20 @ 1
[ 8.804020] initcall mvebu_pcie_driver_init+0x0/0x20 returned 0 after 109 usecs
[ 8.804035] calling tegra_pcie_driver_init+0x0/0x20 @ 1
[ 8.804143] initcall tegra_pcie_driver_init+0x0/0x20 returned 0 after 94 usecs
[ 8.804158] calling rcar_pci_driver_init+0x0/0x20 @ 1
[ 8.804256] initcall rcar_pci_driver_init+0x0/0x20 returned 0 after 84 usecs
[ 8.804271] calling rcar_pcie_driver_init+0x0/0x20 @ 1
[ 8.804379] initcall rcar_pcie_driver_init+0x0/0x20 returned 0 after 93 usecs
[ 8.804524] calling gen_pci_driver_init+0x0/0x20 @ 1
[ 8.804664] initcall gen_pci_driver_init+0x0/0x20 returned 0 after 120 usecs
[ 8.804682] calling exynos_mipi_dsi_driver_init+0x0/0x20 @ 1
[ 8.804758] initcall exynos_mipi_dsi_driver_init+0x0/0x20 returned 0 after 62 usecs
[ 8.804773] calling imsttfb_init+0x0/0x130 @ 1
[ 8.804842] initcall imsttfb_init+0x0/0x130 returned 0 after 56 usecs
[ 8.804857] calling amba_clcdfb_init+0x0/0x3c @ 1
[ 8.804904] initcall amba_clcdfb_init+0x0/0x3c returned 0 after 34 usecs
[ 8.804919] calling asiliantfb_init+0x0/0x44 @ 1
[ 8.804975] initcall asiliantfb_init+0x0/0x44 returned 0 after 43 usecs
[ 8.804990] calling vrfb_driver_init+0x0/0x28 @ 1
[ 8.805079] initcall vrfb_driver_init+0x0/0x28 returned -19 after 75 usecs
[ 8.805095] calling omap_dss_init+0x0/0xc0 @ 1
[ 8.805176] initcall omap_dss_init+0x0/0xc0 returned -19 after 67 usecs
[ 8.805192] calling tpd_driver_init+0x0/0x20 @ 1
[ 8.805284] initcall tpd_driver_init+0x0/0x20 returned 0 after 77 usecs
[ 8.805301] calling hdmi_connector_driver_init+0x0/0x20 @ 1
[ 8.805390] initcall hdmi_connector_driver_init+0x0/0x20 returned 0 after 74 usecs
[ 8.805405] calling mx3fb_init+0x0/0xcc @ 1
[ 8.805475] initcall mx3fb_init+0x0/0xcc returned 0 after 57 usecs
[ 8.805491] calling tegra_ahb_driver_init+0x0/0x20 @ 1
[ 8.805607] initcall tegra_ahb_driver_init+0x0/0x20 returned 0 after 102 usecs
[ 8.805623] calling mv_xor_init+0x0/0x20 @ 1
[ 8.805720] initcall mv_xor_init+0x0/0x20 returned 0 after 83 usecs
[ 8.805735] calling shdma_enter+0x0/0x48 @ 1
[ 8.805747] initcall shdma_enter+0x0/0x48 returned 0 after 1 usecs
[ 8.805761] calling shdma_of_init+0x0/0x20 @ 1
[ 8.805858] initcall shdma_of_init+0x0/0x20 returned 0 after 83 usecs
[ 8.805875] calling tegra_dmac_driver_init+0x0/0x20 @ 1
[ 8.806006] initcall tegra_dmac_driver_init+0x0/0x20 returned 0 after 116 usecs
[ 8.806023] calling tegra_pmc_driver_init+0x0/0x20 @ 1
[ 8.806146] initcall tegra_pmc_driver_init+0x0/0x20 returned 0 after 107 usecs
[ 8.806162] calling virtio_mmio_init+0x0/0x20 @ 1
[ 8.806258] initcall virtio_mmio_init+0x0/0x20 returned 0 after 81 usecs
[ 8.806274] calling virtio_pci_driver_init+0x0/0x28 @ 1
[ 8.806356] initcall virtio_pci_driver_init+0x0/0x28 returned 0 after 67 usecs
[ 8.806373] calling virtio_balloon_driver_init+0x0/0x1c @ 1
[ 8.806420] initcall virtio_balloon_driver_init+0x0/0x1c returned 0 after 34 usecs
[ 8.806436] calling ti_abb_driver_init+0x0/0x20 @ 1
[ 8.806573] initcall ti_abb_driver_init+0x0/0x20 returned 0 after 120 usecs
[ 8.806590] calling pty_init+0x0/0x3f0 @ 1
[ 8.806935] initcall pty_init+0x0/0x3f0 returned 0 after 318 usecs
[ 8.806955] calling sysrq_init+0x0/0xe4 @ 1
[ 8.806994] initcall sysrq_init+0x0/0xe4 returned 0 after 25 usecs
[ 8.807008] calling serial8250_init+0x0/0x17c @ 1
[ 8.807017] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 8.816302] initcall serial8250_init+0x0/0x17c returned 0 after 9045 usecs
[ 8.816332] calling serial_pci_driver_init+0x0/0x28 @ 1
[ 8.816516] initcall serial_pci_driver_init+0x0/0x28 returned 0 after 165 usecs
[ 8.816533] calling mtk8250_platform_driver_init+0x0/0x20 @ 1
[ 8.816700] initcall mtk8250_platform_driver_init+0x0/0x20 returned 0 after 150 usecs
[ 8.816714] calling pl011_dma_initcall+0x0/0x364 @ 1
[ 8.816725] initcall pl011_dma_initcall+0x0/0x364 returned 0 after 0 usecs
[ 8.816737] calling max310x_uart_driver_init+0x0/0x1c @ 1
[ 8.816791] initcall max310x_uart_driver_init+0x0/0x1c returned 0 after 42 usecs
[ 8.816803] calling imx_serial_init+0x0/0x54 @ 1
[ 8.816977] initcall imx_serial_init+0x0/0x54 returned 0 after 157 usecs
[ 8.816990] calling sccnxp_uart_driver_init+0x0/0x20 @ 1
[ 8.817075] initcall sccnxp_uart_driver_init+0x0/0x20 returned 0 after 71 usecs
[ 8.817089] calling msm_serial_init+0x0/0x58 @ 1
[ 8.817212] msm_serial: driver initialized
[ 8.817224] initcall msm_serial_init+0x0/0x58 returned 0 after 122 usecs
[ 8.817238] calling of_platform_serial_driver_init+0x0/0x20 @ 1
[ 8.817491] initcall of_platform_serial_driver_init+0x0/0x20 returned 0 after 234 usecs
[ 8.817505] calling serial_omap_init+0x0/0x54 @ 1
[ 8.817783] omap_uart 44e09000.serial: no wakeirq for uart0
[ 8.818026] 44e09000.serial: ttyO0 at MMIO 0x44e09000 (irq = 154, base_baud = 3000000) is a OMAP UART0
[ 9.593285] console [ttyO0] enabled
[ 9.597611] initcall serial_omap_init+0x0/0x54 returned 0 after 761793 usecs
[ 9.597634] calling init_kgdboc+0x0/0x30 @ 1
[ 9.597649] initcall init_kgdboc+0x0/0x30 returned 0 after 5 usecs
[ 9.597663] calling ttyprintk_init+0x0/0x108 @ 1
[ 9.597897] initcall ttyprintk_init+0x0/0x108 returned 0 after 214 usecs
[ 9.597912] calling init+0x0/0x108 @ 1
[ 9.598061] initcall init+0x0/0x108 returned 0 after 134 usecs
[ 9.598078] calling cn_proc_init+0x0/0x44 @ 1
[ 9.598095] initcall cn_proc_init+0x0/0x44 returned 0 after 7 usecs
[ 9.598111] calling topology_sysfs_init+0x0/0x8c @ 1
[ 9.598174] initcall topology_sysfs_init+0x0/0x8c returned 0 after 51 usecs
[ 9.598189] calling cacheinfo_sysfs_init+0x0/0x9c @ 1
[ 9.598202] initcall cacheinfo_sysfs_init+0x0/0x9c returned -2 after 2 usecs
[ 9.598216] calling devcoredump_init+0x0/0x24 @ 1
[ 9.598254] initcall devcoredump_init+0x0/0x24 returned 0 after 25 usecs
[ 9.598267] calling brd_init+0x0/0x1d8 @ 1
[ 9.607197] brd: module loaded
[ 9.610490] initcall brd_init+0x0/0x1d8 returned 0 after 11909 usecs
[ 9.610515] calling loop_init+0x0/0x134 @ 1
[ 9.615374] loop: module loaded
[ 9.618755] initcall loop_init+0x0/0x134 returned 0 after 8020 usecs
[ 9.618778] calling init+0x0/0xa8 @ 1
[ 9.618891] initcall init+0x0/0xa8 returned 0 after 97 usecs
[ 9.618909] calling charlcd_driver_init+0x0/0x28 @ 1
[ 9.619189] initcall charlcd_driver_init+0x0/0x28 returned -19 after 260 usecs
[ 9.619207] calling sm501_base_init+0x0/0x38 @ 1
[ 9.619424] initcall sm501_base_init+0x0/0x38 returned 0 after 197 usecs
[ 9.619439] calling htcpld_core_init+0x0/0x44 @ 1
[ 9.619599] initcall htcpld_core_init+0x0/0x44 returned -19 after 142 usecs
[ 9.619617] calling t7l66xb_platform_driver_init+0x0/0x20 @ 1
[ 9.619692] initcall t7l66xb_platform_driver_init+0x0/0x20 returned 0 after 61 usecs
[ 9.619707] calling tc6387xb_platform_driver_init+0x0/0x20 @ 1
[ 9.619788] initcall tc6387xb_platform_driver_init+0x0/0x20 returned 0 after 66 usecs
[ 9.619803] calling twl_driver_init+0x0/0x20 @ 1
[ 9.619854] initcall twl_driver_init+0x0/0x20 returned 0 after 38 usecs
[ 9.619869] calling twl4030_power_driver_init+0x0/0x20 @ 1
[ 9.620021] initcall twl4030_power_driver_init+0x0/0x20 returned 0 after 136 usecs
[ 9.620036] calling twl4030_audio_driver_init+0x0/0x20 @ 1
[ 9.620138] initcall twl4030_audio_driver_init+0x0/0x20 returned 0 after 87 usecs
[ 9.620153] calling twl6040_driver_init+0x0/0x20 @ 1
[ 9.620202] initcall twl6040_driver_init+0x0/0x20 returned 0 after 37 usecs
[ 9.620217] calling smsc_i2c_driver_init+0x0/0x20 @ 1
[ 9.620264] initcall smsc_i2c_driver_init+0x0/0x20 returned 0 after 34 usecs
[ 9.620279] calling axp20x_i2c_driver_init+0x0/0x20 @ 1
[ 9.620326] initcall axp20x_i2c_driver_init+0x0/0x20 returned 0 after 35 usecs
[ 9.620341] calling da9063_i2c_driver_init+0x0/0x20 @ 1
[ 9.620461] initcall da9063_i2c_driver_init+0x0/0x20 returned 0 after 104 usecs
[ 9.620479] calling adp5520_driver_init+0x0/0x20 @ 1
[ 9.620534] initcall adp5520_driver_init+0x0/0x20 returned 0 after 42 usecs
[ 9.620550] calling as3722_i2c_driver_init+0x0/0x20 @ 1
[ 9.620606] initcall as3722_i2c_driver_init+0x0/0x20 returned 0 after 43 usecs
[ 9.620623] calling intel_soc_pmic_i2c_driver_init+0x0/0x20 @ 1
[ 9.620672] initcall intel_soc_pmic_i2c_driver_init+0x0/0x20 returned 0 after 36 usecs
[ 9.620687] calling init_sd+0x0/0x190 @ 1
[ 9.620824] initcall init_sd+0x0/0x190 returned 0 after 120 usecs
[ 9.620840] calling init_sr+0x0/0x58 @ 1
[ 9.620887] initcall init_sr+0x0/0x58 returned 0 after 33 usecs
[ 9.620902] calling init_sg+0x0/0x13c @ 1
[ 9.620995] initcall init_sg+0x0/0x13c returned 0 after 79 usecs
[ 9.621011] calling ahci_driver_init+0x0/0x20 @ 1
[ 9.621211] initcall ahci_driver_init+0x0/0x20 returned 0 after 180 usecs
[ 9.621228] calling imx_ahci_driver_init+0x0/0x20 @ 1
[ 9.621346] initcall imx_ahci_driver_init+0x0/0x20 returned 0 after 104 usecs
[ 9.621363] calling init_mtd+0x0/0x108 @ 1
[ 9.621924] initcall init_mtd+0x0/0x108 returned 0 after 530 usecs
[ 9.621945] calling ofpart_parser_init+0x0/0x2c @ 1
[ 9.621957] initcall ofpart_parser_init+0x0/0x2c returned 0 after 1 usecs
[ 9.621971] calling cmdline_parser_init+0x0/0x34 @ 1
[ 9.621983] initcall cmdline_parser_init+0x0/0x34 returned 0 after 0 usecs
[ 9.621997] calling init_mtdblock+0x0/0x1c @ 1
[ 9.622014] initcall init_mtdblock+0x0/0x1c returned 0 after 6 usecs
[ 9.622028] calling nand_base_init+0x0/0x28 @ 1
[ 9.622044] initcall nand_base_init+0x0/0x28 returned 0 after 5 usecs
[ 9.622058] calling omap_nand_driver_init+0x0/0x20 @ 1
[ 9.622172] initcall omap_nand_driver_init+0x0/0x20 returned 0 after 97 usecs
[ 9.622187] calling elm_driver_init+0x0/0x20 @ 1
[ 9.622303] initcall elm_driver_init+0x0/0x20 returned 0 after 101 usecs
[ 9.622319] calling fsl_spi_init+0x0/0x20 @ 1
[ 9.622434] initcall fsl_spi_init+0x0/0x20 returned 0 after 101 usecs
[ 9.622451] calling omap2_mcspi_driver_init+0x0/0x20 @ 1
[ 9.622571] initcall omap2_mcspi_driver_init+0x0/0x20 returned 0 after 105 usecs
[ 9.622586] calling net_olddevs_init+0x0/0x74 @ 1
[ 9.622611] initcall net_olddevs_init+0x0/0x74 returned 0 after 13 usecs
[ 9.622626] calling fixed_mdio_bus_init+0x0/0x104 @ 1
[ 9.623088] libphy: Fixed MDIO Bus: probed
[ 9.627477] initcall fixed_mdio_bus_init+0x0/0x104 returned 0 after 4716 usecs
[ 9.627508] calling tun_init+0x0/0xa4 @ 1
[ 9.627516] tun: Universal TUN/TAP device driver, 1.6
[ 9.632822] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 9.639632] initcall tun_init+0x0/0xa4 returned 0 after 11820 usecs
[ 9.639653] calling virtio_net_driver_init+0x0/0x1c @ 1
[ 9.639717] initcall virtio_net_driver_init+0x0/0x1c returned 0 after 50 usecs
[ 9.639733] calling fec_driver_init+0x0/0x20 @ 1
[ 9.639973] initcall fec_driver_init+0x0/0x20 returned 0 after 218 usecs
[ 9.639991] calling davinci_mdio_init+0x0/0x20 @ 1
[ 9.640126] initcall davinci_mdio_init+0x0/0x20 returned 0 after 118 usecs
[ 9.640143] calling cpsw_phy_sel_driver_init+0x0/0x20 @ 1
[ 9.640283] initcall cpsw_phy_sel_driver_init+0x0/0x20 returned 0 after 124 usecs
[ 9.640299] calling ppp_init+0x0/0xfc @ 1
[ 9.640305] PPP generic driver version 2.4.2
[ 9.645114] initcall ppp_init+0x0/0xfc returned 0 after 4685 usecs
[ 9.645136] calling cdrom_init+0x0/0x2c @ 1
[ 9.645176] initcall cdrom_init+0x0/0x2c returned 0 after 27 usecs
[ 9.645193] calling dwc2_platform_driver_init+0x0/0x20 @ 1
[ 9.645379] initcall dwc2_platform_driver_init+0x0/0x20 returned 0 after 166 usecs
[ 9.645397] calling xhci_pci_init+0x0/0x58 @ 1
[ 9.645490] initcall xhci_pci_init+0x0/0x58 returned 0 after 79 usecs
[ 9.645506] calling ehci_hcd_init+0x0/0x100 @ 1
[ 9.645514] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 9.652445] initcall ehci_hcd_init+0x0/0x100 returned 0 after 6760 usecs
[ 9.652464] calling ehci_pci_init+0x0/0x80 @ 1
[ 9.652472] ehci-pci: EHCI PCI platform driver
[ 9.657214] initcall ehci_pci_init+0x0/0x80 returned 0 after 4626 usecs
[ 9.657231] calling ehci_orion_init+0x0/0x5c @ 1
[ 9.657238] ehci-orion: EHCI orion driver
[ 9.661599] initcall ehci_orion_init+0x0/0x5c returned 0 after 4249 usecs
[ 9.661616] calling ehci_exynos_init+0x0/0x5c @ 1
[ 9.661623] ehci-exynos: EHCI EXYNOS driver
[ 9.666151] initcall ehci_exynos_init+0x0/0x5c returned 0 after 4416 usecs
[ 9.666170] calling ohci_hcd_mod_init+0x0/0x120 @ 1
[ 9.666178] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 9.672838] initcall ohci_hcd_mod_init+0x0/0x120 returned 0 after 6496 usecs
[ 9.672856] calling ohci_pci_init+0x0/0x80 @ 1
[ 9.672863] ohci-pci: OHCI PCI platform driver
[ 9.677605] initcall ohci_pci_init+0x0/0x80 returned 0 after 4623 usecs
[ 9.677621] calling ohci_exynos_init+0x0/0x5c @ 1
[ 9.677628] ohci-exynos: OHCI EXYNOS driver
[ 9.682148] initcall ohci_exynos_init+0x0/0x5c returned 0 after 4406 usecs
[ 9.682165] calling uhci_hcd_init+0x0/0x13c @ 1
[ 9.682173] uhci_hcd: USB Universal Host Controller Interface driver
[ 9.688986] initcall uhci_hcd_init+0x0/0x13c returned 0 after 6646 usecs
[ 9.689004] calling xhci_hcd_init+0x0/0x14 @ 1
[ 9.689015] initcall xhci_hcd_init+0x0/0x14 returned 0 after 0 usecs
[ 9.689030] calling musb_driver_init+0x0/0x20 @ 1
[ 9.689121] initcall musb_driver_init+0x0/0x20 returned 0 after 75 usecs
[ 9.689137] calling ledtrig_usb_init+0x0/0x3c @ 1
[ 9.689154] initcall ledtrig_usb_init+0x0/0x3c returned 0 after 5 usecs
[ 9.689169] calling mousedev_init+0x0/0x90 @ 1
[ 9.689654] mousedev: PS/2 mouse device common for all mice
[ 9.695551] initcall mousedev_init+0x0/0x90 returned 0 after 6212 usecs
[ 9.695572] calling evdev_init+0x0/0x1c @ 1
[ 9.695586] initcall evdev_init+0x0/0x1c returned 0 after 2 usecs
[ 9.695601] calling atkbd_init+0x0/0x28 @ 1
[ 9.695706] initcall atkbd_init+0x0/0x28 returned 0 after 87 usecs
[ 9.695753] calling uinput_init+0x0/0x1c @ 1
[ 9.695949] initcall uinput_init+0x0/0x1c returned 0 after 175 usecs
[ 9.695968] calling mv_rtc_driver_init+0x0/0x28 @ 1
[ 9.696168] initcall mv_rtc_driver_init+0x0/0x28 returned -19 after 180 usecs
[ 9.696187] calling omap_rtc_driver_init+0x0/0x28 @ 1
[ 9.696614] omap_rtc 44e3e000.rtc: already running
[ 9.702081] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
[ 9.709672] initcall omap_rtc_driver_init+0x0/0x28 returned 0 after 13143 usecs
[ 9.709693] calling pcf8523_driver_init+0x0/0x20 @ 1
[ 9.709776] initcall pcf8523_driver_init+0x0/0x20 returned 0 after 67 usecs
[ 9.709789] calling pl031_driver_init+0x0/0x1c @ 1
[ 9.709837] initcall pl031_driver_init+0x0/0x1c returned 0 after 37 usecs
[ 9.709850] calling s3c_rtc_driver_init+0x0/0x20 @ 1
[ 9.710063] initcall s3c_rtc_driver_init+0x0/0x20 returned 0 after 196 usecs
[ 9.710077] calling twl4030rtc_driver_init+0x0/0x20 @ 1
[ 9.710183] initcall twl4030rtc_driver_init+0x0/0x20 returned 0 after 93 usecs
[ 9.710197] calling i2c_dev_init+0x0/0xe8 @ 1
[ 9.710203] i2c /dev entries driver
[ 9.713946] initcall i2c_dev_init+0x0/0xe8 returned 0 after 3648 usecs
[ 9.713963] calling as3722_poweroff_driver_init+0x0/0x20 @ 1
[ 9.714054] initcall as3722_poweroff_driver_init+0x0/0x20 returned 0 after 76 usecs
[ 9.714068] calling gpio_poweroff_driver_init+0x0/0x20 @ 1
[ 9.714175] initcall gpio_poweroff_driver_init+0x0/0x20 returned 0 after 92 usecs
[ 9.714190] calling gpio_restart_driver_init+0x0/0x20 @ 1
[ 9.714290] initcall gpio_restart_driver_init+0x0/0x20 returned 0 after 86 usecs
[ 9.714303] calling hisi_reboot_driver_init+0x0/0x20 @ 1
[ 9.714412] initcall hisi_reboot_driver_init+0x0/0x20 returned 0 after 94 usecs
[ 9.714425] calling msm_restart_init+0x0/0x20 @ 1
[ 9.714523] initcall msm_restart_init+0x0/0x20 returned 0 after 85 usecs
[ 9.714538] calling ltc2952_poweroff_platform_init+0x0/0x44 @ 1
[ 9.714637] initcall ltc2952_poweroff_platform_init+0x0/0x44 returned 0 after 86 usecs
[ 9.714652] calling restart_poweroff_driver_init+0x0/0x20 @ 1
[ 9.714748] initcall restart_poweroff_driver_init+0x0/0x20 returned 0 after 83 usecs
[ 9.714762] calling versatile_reboot_probe+0x0/0x80 @ 1
[ 9.715853] initcall versatile_reboot_probe+0x0/0x80 returned -19 after 1052 usecs
[ 9.715867] calling vexpress_reset_init+0x0/0x20 @ 1
[ 9.716032] initcall vexpress_reset_init+0x0/0x20 returned 0 after 148 usecs
[ 9.716049] calling syscon_reboot_driver_init+0x0/0x20 @ 1
[ 9.716156] initcall syscon_reboot_driver_init+0x0/0x20 returned 0 after 92 usecs
[ 9.716171] calling exynos_tmu_driver_init+0x0/0x20 @ 1
[ 9.716354] initcall exynos_tmu_driver_init+0x0/0x20 returned 0 after 167 usecs
[ 9.716368] calling armada_thermal_driver_init+0x0/0x20 @ 1
[ 9.716619] initcall armada_thermal_driver_init+0x0/0x20 returned 0 after 229 usecs
[ 9.716637] calling dm_init+0x0/0x5c @ 1
[ 9.717099] device-mapper: uevent: version 1.0.3
[ 9.722566] device-mapper: ioctl: 4.29.0-ioctl (2014-10-28) initialised: dm-devel@redhat.com
[ 9.731460] initcall dm_init+0x0/0x5c returned 0 after 14457 usecs
[ 9.731483] calling cpufreq_stats_init+0x0/0xe8 @ 1
[ 9.731502] initcall cpufreq_stats_init+0x0/0xe8 returned 0 after 9 usecs
[ 9.731515] calling cpufreq_gov_powersave_init+0x0/0x1c @ 1
[ 9.731528] initcall cpufreq_gov_powersave_init+0x0/0x1c returned 0 after 3 usecs
[ 9.731542] calling cpufreq_gov_userspace_init+0x0/0x1c @ 1
[ 9.731553] initcall cpufreq_gov_userspace_init+0x0/0x1c returned 0 after 1 usecs
[ 9.731565] calling cpufreq_gov_dbs_init+0x0/0x1c @ 1
[ 9.731576] initcall cpufreq_gov_dbs_init+0x0/0x1c returned 0 after 1 usecs
[ 9.731588] calling cpufreq_gov_dbs_init+0x0/0x1c @ 1
[ 9.731599] initcall cpufreq_gov_dbs_init+0x0/0x1c returned 0 after 1 usecs
[ 9.731612] calling omap_cpufreq_platdrv_init+0x0/0x20 @ 1
[ 9.731761] initcall omap_cpufreq_platdrv_init+0x0/0x20 returned 0 after 133 usecs
[ 9.731776] calling tegra_cpufreq_init+0x0/0xa8 @ 1
[ 9.731811] initcall tegra_cpufreq_init+0x0/0xa8 returned -2 after 23 usecs
[ 9.731826] calling armada38x_cpuidle_plat_driver_init+0x0/0x20 @ 1
[ 9.731929] initcall armada38x_cpuidle_plat_driver_init+0x0/0x20 returned 0 after 87 usecs
[ 9.731946] calling armada370_cpuidle_plat_driver_init+0x0/0x20 @ 1
[ 9.732024] initcall armada370_cpuidle_plat_driver_init+0x0/0x20 returned 0 after 64 usecs
[ 9.732040] calling armadaxp_cpuidle_plat_driver_init+0x0/0x20 @ 1
[ 9.732114] initcall armadaxp_cpuidle_plat_driver_init+0x0/0x20 returned 0 after 61 usecs
[ 9.732128] calling bl_idle_init+0x0/0x110 @ 1
[ 9.732147] initcall bl_idle_init+0x0/0x110 returned -19 after 9 usecs
[ 9.732160] calling exynos_cpuidle_driver_init+0x0/0x20 @ 1
[ 9.732236] initcall exynos_cpuidle_driver_init+0x0/0x20 returned 0 after 63 usecs
[ 9.732249] calling mmc_blk_init+0x0/0xa0 @ 1
[ 9.732262] Driver 'mmcblk' needs updating - please use bus_type methods
[ 9.739374] initcall mmc_blk_init+0x0/0xa0 returned 0 after 6944 usecs
[ 9.739388] calling mmci_driver_init+0x0/0x1c @ 1
[ 9.739435] initcall mmci_driver_init+0x0/0x1c returned 0 after 35 usecs
[ 9.739448] calling sdhci_drv_init+0x0/0x2c @ 1
[ 9.739454] sdhci: Secure Digital Host Controller Interface driver
[ 9.745941] sdhci: Copyright(c) Pierre Ossman
[ 9.750517] initcall sdhci_drv_init+0x0/0x2c returned 0 after 10798 usecs
[ 9.750535] calling omap_hsmmc_driver_init+0x0/0x20 @ 1
[ 9.812644] initcall omap_hsmmc_driver_init+0x0/0x20 returned 0 after 60615 usecs
[ 9.812675] calling sdhci_pltfm_drv_init+0x0/0x20 @ 1
[ 9.812682] sdhci-pltfm: SDHCI platform and OF driver helper
[ 9.818649] initcall sdhci_pltfm_drv_init+0x0/0x20 returned 0 after 5821 usecs
[ 9.818702] calling sdhci_esdhc_imx_driver_init+0x0/0x20 @ 1
[ 9.818990] initcall sdhci_esdhc_imx_driver_init+0x0/0x20 returned 0 after 265 usecs
[ 9.819007] calling asic3_led_driver_init+0x0/0x20 @ 1
[ 9.819098] initcall asic3_led_driver_init+0x0/0x20 returned 0 after 76 usecs
[ 9.819112] calling syscon_leds_init+0x0/0x280 @ 1
[ 9.819438] initcall syscon_leds_init+0x0/0x280 returned 0 after 301 usecs
[ 9.819455] calling ledtrig_cpu_init+0x0/0xb0 @ 1
[ 9.819481] ledtrig-cpu: registered to indicate activity on CPUs
[ 9.825856] initcall ledtrig_cpu_init+0x0/0xb0 returned 0 after 6233 usecs
[ 9.825917] calling staging_init+0x0/0x14 @ 1
[ 9.825930] initcall staging_init+0x0/0x14 returned 0 after 0 usecs
[ 9.825944] calling udc_driver_init+0x0/0x20 @ 1
[ 9.826093] initcall udc_driver_init+0x0/0x20 returned 0 after 131 usecs
[ 9.826116] calling dra7_atl_clk_driver_init+0x0/0x20 @ 1
[ 9.826310] initcall dra7_atl_clk_driver_init+0x0/0x20 returned 0 after 175 usecs
[ 9.826326] calling ipc_init+0x0/0x1c @ 1
[ 9.826379] initcall ipc_init+0x0/0x1c returned 0 after 41 usecs
[ 9.826394] calling extcon_class_init+0x0/0x30 @ 1
[ 9.826433] initcall extcon_class_init+0x0/0x30 returned 0 after 27 usecs
[ 9.826447] calling mvebu_devbus_init+0x0/0x20 @ 1
[ 9.826632] initcall mvebu_devbus_init+0x0/0x20 returned 0 after 167 usecs
[ 9.826649] calling tegra20_mc_driver_init+0x0/0x20 @ 1
[ 9.826767] initcall tegra20_mc_driver_init+0x0/0x20 returned 0 after 103 usecs
[ 9.826782] calling powercap_init+0x0/0x258 @ 1
[ 9.826963] initcall powercap_init+0x0/0x258 returned 0 after 166 usecs
[ 9.826978] calling alsa_timer_init+0x0/0x1ac @ 1
[ 9.827358] initcall alsa_timer_init+0x0/0x1ac returned 0 after 351 usecs
[ 9.827376] calling alsa_pcm_init+0x0/0x74 @ 1
[ 9.827398] initcall alsa_pcm_init+0x0/0x74 returned 0 after 11 usecs
[ 9.827412] calling snd_compress_init+0x0/0x14 @ 1
[ 9.827422] initcall snd_compress_init+0x0/0x14 returned 0 after 0 usecs
[ 9.827435] calling snd_soc_init+0x0/0x124 @ 1
[ 9.828148] initcall snd_soc_init+0x0/0x124 returned 0 after 672 usecs
[ 9.828173] calling hdmi_codec_driver_init+0x0/0x20 @ 1
[ 9.828307] initcall hdmi_codec_driver_init+0x0/0x20 returned 0 after 117 usecs
[ 9.828323] calling sgtl5000_i2c_driver_init+0x0/0x20 @ 1
[ 9.828552] initcall sgtl5000_i2c_driver_init+0x0/0x20 returned 0 after 209 usecs
[ 9.828573] calling twl4030_codec_driver_init+0x0/0x20 @ 1
[ 9.828696] initcall twl4030_codec_driver_init+0x0/0x20 returned 0 after 105 usecs
[ 9.828712] calling fsl_ssi_driver_init+0x0/0x20 @ 1
[ 9.828883] initcall fsl_ssi_driver_init+0x0/0x20 returned 0 after 154 usecs
[ 9.828900] calling imx_sgtl5000_driver_init+0x0/0x20 @ 1
[ 9.829012] initcall imx_sgtl5000_driver_init+0x0/0x20 returned 0 after 97 usecs
[ 9.829027] calling asoc_mcbsp_driver_init+0x0/0x20 @ 1
[ 9.829184] initcall asoc_mcbsp_driver_init+0x0/0x20 returned 0 after 140 usecs
[ 9.829199] calling omap_twl4030_driver_init+0x0/0x20 @ 1
[ 9.829312] initcall omap_twl4030_driver_init+0x0/0x20 returned 0 after 98 usecs
[ 9.829330] calling sock_diag_init+0x0/0x1c @ 1
[ 9.829388] initcall sock_diag_init+0x0/0x1c returned 0 after 43 usecs
[ 9.829405] calling blackhole_module_init+0x0/0x1c @ 1
[ 9.829420] initcall blackhole_module_init+0x0/0x1c returned 0 after 4 usecs
[ 9.829435] calling gre_offload_init+0x0/0x20 @ 1
[ 9.829448] initcall gre_offload_init+0x0/0x20 returned 0 after 2 usecs
[ 9.829462] calling sysctl_ipv4_init+0x0/0x5c @ 1
[ 9.829629] initcall sysctl_ipv4_init+0x0/0x5c returned 0 after 149 usecs
[ 9.829645] calling ipv4_netfilter_init+0x0/0x1c @ 1
[ 9.829658] initcall ipv4_netfilter_init+0x0/0x1c returned 0 after 1 usecs
[ 9.829673] calling cubictcp_register+0x0/0x6c @ 1
[ 9.829684] TCP: cubic registered
[ 9.833246] initcall cubictcp_register+0x0/0x6c returned 0 after 3472 usecs
[ 9.833297] calling tcp_memcontrol_init+0x0/0x40 @ 1
[ 9.833324] initcall tcp_memcontrol_init+0x0/0x40 returned 0 after 12 usecs
[ 9.833340] calling inet6_init+0x0/0x2f0 @ 1
[ 9.834175] NET: Registered protocol family 10
[ 9.840247] initcall inet6_init+0x0/0x2f0 returned 0 after 6708 usecs
[ 9.840271] calling packet_init+0x0/0x50 @ 1
[ 9.840281] NET: Registered protocol family 17
[ 9.845106] initcall packet_init+0x0/0x50 returned 0 after 4703 usecs
[ 9.845122] calling dcbnl_init+0x0/0x68 @ 1
[ 9.845134] initcall dcbnl_init+0x0/0x68 returned 0 after 2 usecs
[ 9.845146] calling init_dns_resolver+0x0/0x124 @ 1
[ 9.845206] Key type dns_resolver registered
[ 9.849735] initcall init_dns_resolver+0x0/0x124 returned 0 after 4468 usecs
[ 9.849949] calling init_machine_late+0x0/0x30 @ 1
[ 9.850011] omap_voltage_late_init: Voltage driver support not added
[ 9.856742] sr_dev_init: No voltage domain specified for smartreflex0. Cannot initialize
[ 9.865303] sr_dev_init: No voltage domain specified for smartreflex1. Cannot initialize
[ 9.874551] initcall init_machine_late+0x0/0x30 returned 0 after 23994 usecs
[ 9.874572] calling thumbee_init+0x0/0x64 @ 1
[ 9.874579] ThumbEE CPU extension supported.
[ 9.879117] initcall thumbee_init+0x0/0x64 returned 0 after 4425 usecs
[ 9.879156] calling swp_emulation_init+0x0/0x74 @ 1
[ 9.879177] Registering SWP/SWPB emulation handler
[ 9.884231] initcall swp_emulation_init+0x0/0x74 returned 0 after 4944 usecs
[ 9.884299] calling pj4_cp0_init+0x0/0xd8 @ 1
[ 9.884311] initcall pj4_cp0_init+0x0/0xd8 returned 0 after 1 usecs
[ 9.884328] calling bL_switcher_init+0x0/0xc0 @ 1
[ 9.884339] initcall bL_switcher_init+0x0/0xc0 returned -19 after 1 usecs
[ 9.884360] calling mvebu_armada_xp_gp_pm_init+0x0/0x184 @ 1
[ 9.884374] initcall mvebu_armada_xp_gp_pm_init+0x0/0x184 returned -19 after 4 usecs
[ 9.884417] calling __sr_class3_init+0x0/0x34 @ 1
[ 9.884425] SmartReflex Class3 initialized
[ 9.888767] initcall __sr_class3_init+0x0/0x34 returned 0 after 4233 usecs
[ 9.888805] calling init_oops_id+0x0/0x50 @ 1
[ 9.888836] initcall init_oops_id+0x0/0x50 returned 0 after 19 usecs
[ 9.888852] calling sched_init_debug+0x0/0x40 @ 1
[ 9.888892] initcall sched_init_debug+0x0/0x40 returned 0 after 28 usecs
[ 9.888910] calling pm_qos_power_init+0x0/0x64 @ 1
[ 9.889734] initcall pm_qos_power_init+0x0/0x64 returned 0 after 784 usecs
[ 9.889753] calling pm_debugfs_init+0x0/0x40 @ 1
[ 9.889777] initcall pm_debugfs_init+0x0/0x40 returned 0 after 12 usecs
[ 9.889792] calling printk_late_init+0x0/0x64 @ 1
[ 9.889812] initcall printk_late_init+0x0/0x64 returned 0 after 9 usecs
[ 9.889830] calling tk_debug_sleep_time_init+0x0/0x58 @ 1
[ 9.889850] initcall tk_debug_sleep_time_init+0x0/0x58 returned 0 after 8 usecs
[ 9.889866] calling load_system_certificate_list+0x0/0x11c @ 1
[ 9.889873] Loading compiled-in X.509 certificates
[ 9.902341] mmc0: host does not support reading read-only switch, assuming write-enable
[ 9.911272] Loaded X.509 cert 'Magrathea: Glacier signing key: 6da2643c0841484545c2813c16497691ad236c82'
[ 9.921268] initcall load_system_certificate_list+0x0/0x11c returned 0 after 30645 usecs
[ 9.921408] calling debugfs_kprobe_init+0x0/0xcc @ 1
[ 9.921489] initcall debugfs_kprobe_init+0x0/0xcc returned 0 after 62 usecs
[ 9.921508] calling taskstats_init+0x0/0x70 @ 1
[ 9.921555] registered taskstats version 1
[ 9.925915] initcall taskstats_init+0x0/0x70 returned 0 after 4287 usecs
[ 9.926060] mmc0: new high speed SDHC card at address aaaa
[ 9.931858] calling clear_boot_tracer+0x0/0x3c @ 1
[ 9.931871] initcall clear_boot_tracer+0x0/0x3c returned 0 after 1 usecs
[ 9.931887] calling kdb_ftrace_register+0x0/0x4c @ 1
[ 9.931914] initcall kdb_ftrace_register+0x0/0x4c returned 0 after 16 usecs
[ 9.931927] calling register_htab_map+0x0/0x20 @ 1
[ 9.931938] initcall register_htab_map+0x0/0x20 returned 0 after 1 usecs
[ 9.931950] calling register_array_map+0x0/0x20 @ 1
[ 9.931960] initcall register_array_map+0x0/0x20 returned 0 after 0 usecs
[ 9.931972] calling register_test_ops+0x0/0x20 @ 1
[ 9.931982] initcall register_test_ops+0x0/0x20 returned 0 after 1 usecs
[ 9.932000] calling fault_around_debugfs+0x0/0x54 @ 1
[ 9.932031] initcall fault_around_debugfs+0x0/0x54 returned 0 after 18 usecs
[ 9.932049] calling max_swapfiles_check+0x0/0x14 @ 1
[ 9.932060] initcall max_swapfiles_check+0x0/0x14 returned 0 after 0 usecs
[ 9.932074] calling init_zswap+0x0/0x3bc @ 1
[ 9.932084] initcall init_zswap+0x0/0x3bc returned 0 after 0 usecs
[ 9.932107] calling init_root_keyring+0x0/0x14 @ 1
[ 9.932189] initcall init_root_keyring+0x0/0x14 returned 0 after 67 usecs
[ 9.932205] calling init_trusted+0x0/0xc0 @ 1
[ 9.933282] mmcblk0: mmc0:aaaa SL16G 14.8 GiB
[ 9.946362] mmcblk0: p1 p2 p3 p4
[ 9.963348] Key type trusted registered
[ 9.967491] initcall init_trusted+0x0/0xc0 returned 0 after 34423 usecs
[ 9.967681] calling init_encrypted+0x0/0x124 @ 1
[ 9.998538] mmc1: BKOPS_EN bit is not set
[ 10.003362] Key type encrypted registered
[ 10.007660] initcall init_encrypted+0x0/0x124 returned 0 after 39003 usecs
[ 10.007832] calling init_profile_hash+0x0/0xa0 @ 1
[ 10.007853] AppArmor: AppArmor sha1 policy hashing enabled
[ 10.013668] initcall init_profile_hash+0x0/0xa0 returned 0 after 5681 usecs
[ 10.013771] calling init_ima+0x0/0x40 @ 1
[ 10.013785] ima: No TPM chip found, activating TPM-bypass!
[ 10.019787] initcall init_ima+0x0/0x40 returned 0 after 5853 usecs
[ 10.019806] calling init_evm+0x0/0x54 @ 1
[ 10.019814] evm: HMAC attrs: 0x1
[ 10.023345] initcall init_evm+0x0/0x54 returned 0 after 3438 usecs
[ 10.023363] calling prandom_reseed+0x0/0x54 @ 1
[ 10.023414] initcall prandom_reseed+0x0/0x54 returned 0 after 37 usecs
[ 10.023518] calling tegra_gpio_debuginit+0x0/0x40 @ 1
[ 10.023553] initcall tegra_gpio_debuginit+0x0/0x40 returned 0 after 20 usecs
[ 10.023571] calling pci_resource_alignment_sysfs_init+0x0/0x34 @ 1
[ 10.023614] initcall pci_resource_alignment_sysfs_init+0x0/0x34 returned 0 after 30 usecs
[ 10.023629] calling pci_sysfs_init+0x0/0x5c @ 1
[ 10.023644] initcall pci_sysfs_init+0x0/0x5c returned 0 after 5 usecs
[ 10.023664] calling deferred_probe_initcall+0x0/0x98 @ 1
[ 10.026386] mmc1: new high speed MMC card at address 0001
[ 10.039664] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
[ 10.045757] mmcblk1: mmc1:0001 MMC04G 3.60 GiB
[ 10.050909] initcall deferred_probe_initcall+0x0/0x98 returned 0 after 26569 usecs
[ 10.050943] calling pm_genpd_debug_init+0x0/0x74 @ 1
[ 10.051016] initcall pm_genpd_debug_init+0x0/0x74 returned 0 after 57 usecs
[ 10.051033] calling genpd_poweroff_unused+0x0/0x18 @ 1
[ 10.051045] initcall genpd_poweroff_unused+0x0/0x18 returned 0 after 1 usecs
[ 10.051064] calling cpsw_init+0x0/0x20 @ 1
[ 10.065977] mmcblk1boot0: mmc1:0001 MMC04G partition 1 2.00 MiB
[ 10.072619] mmcblk1boot1: mmc1:0001 MMC04G partition 2 2.00 MiB
[ 10.080442] mmcblk1: p1 p2
[ 10.112441] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
[ 10.118855] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[ 10.141314] calling phy_module_init+0x0/0x1000 [smsc] @ 73
[ 10.141607] initcall phy_module_init+0x0/0x1000 [smsc] returned 0 after 257 usecs
[ 10.142785] libphy: 4a101000.mdio: probed
[ 10.147085] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver SMSC LAN8710/LAN8720
[ 10.157835] cpsw 4a100000.ethernet: Detected MACID = d0:5f:b8:fe:47:85
[ 10.166182] initcall cpsw_init+0x0/0x20 returned 0 after 112382 usecs
[ 10.166216] calling rtc_hctosys+0x0/0x120 @ 1
[ 10.166279] omap_rtc 44e3e000.rtc: setting system clock to 2015-04-30 09:27:17 UTC (1430386037)
[ 10.175511] initcall rtc_hctosys+0x0/0x120 returned 0 after 9058 usecs
[ 10.175645] calling charger_manager_init+0x0/0xa8 @ 1
[ 10.176176] initcall charger_manager_init+0x0/0xa8 returned 0 after 497 usecs
[ 10.176197] calling sr_init+0x0/0x84 @ 1
[ 10.176204] sr_init: No PMIC hook to init smartreflex
[ 10.181764] sr_init: platform driver register failed for SR
[ 10.187677] initcall sr_init+0x0/0x84 returned -19 after 11197 usecs
[ 10.187776] calling of_fdt_raw_init+0x0/0x78 @ 1
[ 10.188037] initcall of_fdt_raw_init+0x0/0x78 returned 0 after 237 usecs
[ 10.188055] calling clk_debug_init+0x0/0x134 @ 1
[ 10.192818] initcall clk_debug_init+0x0/0x134 returned 0 after 4602 usecs
[ 10.192863] calling register_sock_filter_ops+0x0/0x20 @ 1
[ 10.192875] initcall register_sock_filter_ops+0x0/0x20 returned 0 after 1 usecs
[ 10.192892] calling tcp_congestion_default+0x0/0x1c @ 1
[ 10.192906] initcall tcp_congestion_default+0x0/0x1c returned 0 after 4 usecs
[ 10.192923] calling ip_auto_config+0x0/0x5c @ 1
[ 10.192959] initcall ip_auto_config+0x0/0x5c returned 0 after 23 usecs
[ 10.192977] calling __omap_device_late_init+0x0/0x68 @ 1
[ 10.193062] initcall __omap_device_late_init+0x0/0x68 returned 0 after 71 usecs
[ 10.193092] calling software_resume+0x0/0x36c @ 1
[ 10.193105] PM: Hibernation image not present or could not be loaded.
[ 10.193117] initcall software_resume+0x0/0x36c returned -2 after 12 usecs
[ 10.193145] calling regulator_init_complete+0x0/0x1b0 @ 1
[ 10.193161] initcall regulator_init_complete+0x0/0x1b0 returned 0 after 4 usecs
[ 10.193189] calling clk_disable_unused+0x0/0x148 @ 1
[ 10.193273] initcall clk_disable_unused+0x0/0x148 returned 0 after 69 usecs
[ 10.193289] calling alsa_sound_last_init+0x0/0x74 @ 1
[ 10.193296] ALSA device list:
[ 10.196462] No soundcards found.
[ 10.200025] initcall alsa_sound_last_init+0x0/0x74 returned 0 after 6566 usecs
[ 10.202083] Freeing unused kernel memory: 1024K (c1100000 - c1200000)
[ 10.314163] random: systemd-udevd urandom read with 39 bits of entropy available
[ 11.363074] initrd: mounting /dev/disk/by-label/system-a
[ 11.374749] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[ 11.384984] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
[ 11.404388] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[ 11.420804] initrd: mounting /run
[ 11.467844] initrd: checking filesystem for writable partition
[ 11.486177] EXT4-fs (mmcblk0p4): couldn't mount as ext3 due to feature incompatibilities
[ 11.496145] EXT4-fs (mmcblk0p4): couldn't mount as ext2 due to feature incompatibilities
[ 11.521000] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: errors=remount-ro
[ 11.574920] initrd: mounting writable partition
[ 11.608612] EXT4-fs (mmcblk0p4): couldn't mount as ext3 due to feature incompatibilities
[ 11.619960] EXT4-fs (mmcblk0p4): couldn't mount as ext2 due to feature incompatibilities
[ 11.639213] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: discard
[ 12.466728] calling init_autofs4_fs+0x0/0x30 [autofs4] @ 1
[ 12.467142] initcall init_autofs4_fs+0x0/0x30 [autofs4] returned 0 after 358 usecs
[ 12.467256] systemd[1]: Inserted module 'autofs4'
[ 12.492184] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[ 12.511685] systemd[1]: Detected architecture arm.
[ 12.526078] systemd[1]: Set hostname to <localhost.localdomain>.
[ 12.533439] systemd[1]: Initializing machine ID from random generator.
[ 12.540811] systemd[1]: Installed transient /etc/machine-id file.
[ 12.925718] systemd[1]: Mounted /writable.
[ 12.930442] systemd[1]: Mounted /.
[ 12.998494] systemd[1]: Cannot add dependency job for unit sshd-keygen.service, ignoring: Unit sshd-keygen.service failed to load: No such file or directory.
[ 13.013896] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
[ 13.034130] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 13.042367] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[ 13.050893] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 13.059370] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[ 13.076603] systemd[1]: Reached target Encrypted Volumes.
[ 13.082418] systemd[1]: Starting Encrypted Volumes.
[ 13.100628] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 13.110691] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[ 13.128555] systemd[1]: Reached target Swap.
[ 13.133178] systemd[1]: Starting Swap.
[ 13.144541] systemd[1]: Reached target Paths.
[ 13.149246] systemd[1]: Starting Paths.
[ 13.160535] systemd[1]: Reached target Remote File Systems (Pre).
[ 13.167048] systemd[1]: Starting Remote File Systems (Pre).
[ 13.180560] systemd[1]: Created slice Root Slice.
[ 13.185657] systemd[1]: Starting Root Slice.
[ 13.200576] systemd[1]: Listening on Journal Socket (/dev/log).
[ 13.206929] systemd[1]: Starting Journal Socket (/dev/log).
[ 13.220593] systemd[1]: Created slice User and Session Slice.
[ 13.226784] systemd[1]: Starting User and Session Slice.
[ 13.240578] systemd[1]: Listening on Journal Audit Socket.
[ 13.246491] systemd[1]: Starting Journal Audit Socket.
[ 13.260564] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 13.268006] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[ 13.284571] systemd[1]: Listening on udev Kernel Socket.
[ 13.290288] systemd[1]: Starting udev Kernel Socket.
[ 13.304574] systemd[1]: Listening on udev Control Socket.
[ 13.310382] systemd[1]: Starting udev Control Socket.
[ 13.324567] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 13.331737] systemd[1]: Starting fsck to fsckd communication Socket.
[ 13.348566] systemd[1]: Listening on Delayed Shutdown Socket.
[ 13.354739] systemd[1]: Starting Delayed Shutdown Socket.
[ 13.368603] systemd[1]: Created slice System Slice.
[ 13.373963] systemd[1]: Starting System Slice.
[ 13.388599] systemd[1]: Created slice system-getty.slice.
[ 13.394421] systemd[1]: Starting system-getty.slice.
[ 13.408555] systemd[1]: Reached target Slices.
[ 13.413352] systemd[1]: Starting Slices.
[ 13.422135] systemd[1]: Starting Increase datagram queue length...
[ 13.448670] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ 13.456000] systemd[1]: Starting system-serial\x2dgetty.slice.
[ 13.473371] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ 13.480673] systemd[1]: Starting system-systemd\x2dfsck.slice.
[ 13.496700] systemd[1]: Listening on Journal Socket.
[ 13.502860] systemd[1]: Starting Journal Socket.
[ 13.517675] systemd[1]: Starting Nameserver information manager...
[ 13.549616] systemd[1]: Starting udev Coldplug all Devices...
[ 13.585374] systemd[1]: Mounted Huge Pages File System.
[ 13.599641] systemd[1]: Mounting POSIX Message Queue File System...
[ 13.635426] systemd[1]: Started Set Up Additional Binary Formats.
[ 13.684185] systemd[1]: Starting Load Kernel Modules...
[ 13.739822] systemd[1]: Mounting Debug File System...
[ 13.773177] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[ 13.819482] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 13.855394] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[ 13.888674] systemd[1]: Mounted Debug File System.
[ 13.900606] systemd[1]: Mounted POSIX Message Queue File System.
[ 13.920702] systemd[1]: Started Increase datagram queue length.
[ 13.976866] systemd[1]: Started Load Kernel Modules.
[ 14.004810] systemd[1]: Started Create list of required static device nodes for the current kernel.
[ 14.036795] systemd[1]: Started Remount Root and Kernel File Systems.
[ 14.080895] systemd[1]: Started Nameserver information manager.
[ 14.116869] systemd[1]: Started udev Coldplug all Devices.
[ 14.484259] systemd[1]: Starting Load/Save Random Seed...
[ 14.505108] systemd[1]: Started Various fixups to make systemd work better on Debian.
[ 14.523149] systemd[1]: Started Rebuild Hardware Database.
[ 14.534272] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 14.572059] systemd[1]: Starting Apply Kernel Variables...
[ 14.588516] random: nonblocking pool is initialized
[ 14.597373] systemd[1]: Mounted Configuration File System.
[ 14.624231] systemd[1]: Mounting FUSE Control File System...
[ 14.668823] systemd[1]: Listening on Syslog Socket.
[ 14.669035] systemd[1]: Starting Syslog Socket.
[ 14.674315] systemd[1]: Starting Journal Service...
[ 14.713031] systemd[1]: Mounted FUSE Control File System.
[ 14.717445] systemd[1]: systemd-random-seed.service: main process exited, code=exited, status=1/FAILURE
[ 14.740827] systemd[1]: Failed to start Load/Save Random Seed.
[ 14.751252] systemd[1]: Unit systemd-random-seed.service entered failed state.
[ 14.751531] systemd[1]: systemd-random-seed.service failed.
[ 14.764742] systemd[1]: Started Create Static Device Nodes in /dev.
[ 14.776691] systemd[1]: Started Apply Kernel Variables.
[ 14.900748] systemd[1]: Reached target Local File Systems (Pre).
[ 14.900937] systemd[1]: Starting Local File Systems (Pre).
[ 14.901153] systemd[1]: MESSAGE=Failed to check directory /etc/hosts: Not a directory
[ 14.909464] systemd[1]: Mounting /etc/hosts...
[ 14.926399] systemd[1]: apps.mount: Directory /apps to mount over is not empty, mounting anyway.
[ 14.935067] systemd[1]: Mounting /apps...
[ 14.982685] systemd[1]: Mounting /etc/apparmor.d/cache...
[ 15.006282] systemd[1]: etc-dbus\x2d1-system.d.mount: Directory /etc/dbus-1/system.d to mount over is not empty, mounting anyway.
[ 15.016337] systemd[1]: Mounting /etc/dbus-1/system.d...
[ 15.054103] systemd[1]: usr-share-click-frameworks.mount: Directory /usr/share/click/frameworks to mount over is not empty, mounting anyway.
[ 15.082900] systemd[1]: Mounting /usr/share/click/frameworks...
[ 15.153092] systemd[1]: Mounting /var/tmp...
[ 15.162103] systemd[1]: var-lib-snappy.mount: Directory /var/lib/snappy to mount over is not empty, mounting anyway.
[ 15.180296] systemd[1]: Mounting /var/lib/snappy...
[ 15.225152] systemd[1]: var-log.mount: Directory /var/log to mount over is not empty, mounting anyway.
[ 15.241459] systemd[1]: Mounting /var/log...
[ 15.256017] systemd[1]: var-lib-initramfs\x2dtools.mount: Directory /var/lib/initramfs-tools to mount over is not empty, mounting anyway.
[ 15.273999] systemd[1]: Mounting /var/lib/initramfs-tools...
[ 15.291269] systemd[1]: etc-sudoers.d.mount: Directory /etc/sudoers.d to mount over is not empty, mounting anyway.
[ 15.300040] systemd[1]: Mounting /etc/sudoers.d...
[ 15.321210] systemd[1]: etc-writable.mount: Directory /etc/writable to mount over is not empty, mounting anyway.
[ 15.330510] systemd[1]: Mounting /etc/writable...
[ 15.358903] systemd[1]: Mounting /var/lib/cloud...
[ 15.395303] systemd[1]: Mounting /var/lib/sudo...
[ 15.419810] systemd[1]: etc-ufw.mount: Directory /etc/ufw to mount over is not empty, mounting anyway.
[ 15.429168] systemd[1]: Mounting /etc/ufw...
[ 15.442120] systemd[1]: oem.mount: Directory /oem to mount over is not empty, mounting anyway.
[ 15.452290] systemd[1]: Mounting /oem...
[ 15.481147] systemd[1]: etc-sysctl.d.mount: Directory /etc/sysctl.d to mount over is not empty, mounting anyway.
[ 15.490715] systemd[1]: Mounting /etc/sysctl.d...
[ 15.526915] systemd[1]: Mounting /root...
[ 15.534244] systemd[1]: etc-network-interfaces.d.mount: Directory /etc/network/interfaces.d to mount over is not empty, mounting anyway.
[ 15.544047] systemd[1]: Mounting /etc/network/interfaces.d...
[ 15.566154] systemd[1]: home.mount: Directory /home to mount over is not empty, mounting anyway.
[ 15.575650] systemd[1]: Mounting /home...
[ 15.599037] systemd[1]: var-lib-apps.mount: Directory /var/lib/apps to mount over is not empty, mounting anyway.
[ 15.621013] systemd[1]: Mounting /var/lib/apps...
[ 15.643193] systemd[1]: Mounting /etc/udev/rules.d...
[ 15.666505] systemd[1]: var-lib-dhcp.mount: Directory /var/lib/dhcp to mount over is not empty, mounting anyway.
[ 15.681254] systemd[1]: Mounting /var/lib/dhcp...
[ 15.694144] systemd[1]: var-lib-system\x2dimage.mount: Directory /var/lib/system-image to mount over is not empty, mounting anyway.
[ 15.716675] systemd[1]: Mounting /var/lib/system-image...
[ 15.726171] systemd[1]: var-lib-apparmor.mount: Directory /var/lib/apparmor to mount over is not empty, mounting anyway.
[ 15.744625] systemd[1]: Mounting /var/lib/apparmor...
[ 15.779271] systemd[1]: Mounting /mnt...
[ 15.804103] systemd[1]: Mounting /var/lib/logrotate...
[ 15.830288] systemd[1]: Mounting /var/lib/dbus...
[ 15.855044] systemd[1]: Mounting /var/cache/apparmor...
[ 15.878428] systemd[1]: etc-ssh.mount: Directory /etc/ssh to mount over is not empty, mounting anyway.
[ 15.883827] systemd[1]: Mounting /etc/ssh...
[ 15.919499] systemd[1]: Mounting /tmp...
[ 15.946433] systemd[1]: var-lib-extrausers.mount: Directory /var/lib/extrausers to mount over is not empty, mounting anyway.
[ 15.957565] systemd[1]: Mounting /var/lib/extrausers...
[ 15.979367] systemd[1]: Starting udev Kernel Device Manager...
[ 16.132811] systemd[1]: Mounted /home.
[ 16.140817] systemd[1]: Mounted /apps.
[ 16.148824] systemd[1]: Mounted /oem.
[ 16.156833] systemd[1]: Mounted /tmp.
[ 16.164818] systemd[1]: Mounted /mnt.
[ 16.172809] systemd[1]: Mounted /var/lib/apps.
[ 16.180818] systemd[1]: Mounted /var/lib/cloud.
[ 16.188826] systemd[1]: Mounted /var/lib/dbus.
[ 16.196786] systemd[1]: Mounted /var/lib/dhcp.
[ 16.204763] systemd[1]: Mounted /var/lib/logrotate.
[ 16.212831] systemd[1]: Mounted /var/lib/sudo.
[ 16.220765] systemd[1]: Mounted /var/lib/system-image.
[ 16.228780] systemd[1]: Mounted /var/log.
[ 16.236760] systemd[1]: Mounted /etc/sysctl.d.
[ 16.244747] systemd[1]: Mounted /etc/ufw.
[ 16.252771] systemd[1]: Mounted /etc/apparmor.d/cache.
[ 16.260777] systemd[1]: Mounted /var/cache/apparmor.
[ 16.268752] systemd[1]: Mounted /var/lib/apparmor.
[ 16.276767] systemd[1]: Mounted /var/tmp.
[ 16.284767] systemd[1]: Mounted /etc/ssh.
[ 16.292762] systemd[1]: Mounted /etc/writable.
[ 16.300775] systemd[1]: Mounted /var/lib/initramfs-tools.
[ 16.308780] systemd[1]: Mounted /usr/share/click/frameworks.
[ 16.316767] systemd[1]: Mounted /root.
[ 16.324760] systemd[1]: Mounted /etc/sudoers.d.
[ 16.332753] systemd[1]: Mounted /etc/hosts.
[ 16.340760] systemd[1]: Mounted /var/lib/extrausers.
[ 16.348782] systemd[1]: Mounted /etc/network/interfaces.d.
[ 16.356787] systemd[1]: Mounted /var/lib/snappy.
[ 16.364767] systemd[1]: Mounted /etc/udev/rules.d.
[ 16.372774] systemd[1]: Mounted /etc/dbus-1/system.d.
[ 16.424762] systemd[1]: Started Journal Service.
[ 17.035982] calling uio_init+0x0/0x1000 [uio] @ 406
[ 17.036069] initcall uio_init+0x0/0x1000 [uio] returned 0 after 49 usecs
[ 17.117817] calling gpio_led_driver_init+0x0/0x1000 [leds_gpio] @ 404
[ 17.133916] calling uio_pdrv_genirq_init+0x0/0x1000 [uio_pdrv_genirq] @ 405
[ 17.134227] initcall uio_pdrv_genirq_init+0x0/0x1000 [uio_pdrv_genirq] returned 0 after 268 usecs
[ 17.140809] initcall gpio_led_driver_init+0x0/0x1000 [leds_gpio] returned 0 after 22394 usecs
[ 17.413676] calling omap8250_platform_driver_init+0x0/0x1000 [8250_omap] @ 408
[ 17.473848] initcall omap8250_platform_driver_init+0x0/0x1000 [8250_omap] returned 0 after 58634 usecs
[ 17.518321] calling tps65217_init+0x0/0x1000 [tps65217] @ 401
[ 17.600912] tps65217 0-0024: TPS65217 ID 0xe version 1.2
[ 17.601164] initcall tps65217_init+0x0/0x1000 [tps65217] returned 0 after 80850 usecs
[ 17.617166] systemd-journald[337]: Received request to flush runtime journal from PID 1
[ 17.641613] calling am335x_child_init+0x0/0x1000 [musb_am335x] @ 404
[ 17.725262] initcall am335x_child_init+0x0/0x1000 [musb_am335x] returned 0 after 81633 usecs
[ 17.743103] calling omap_mbox_init+0x0/0x1000 [omap_mailbox] @ 410
[ 17.743763] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[ 17.839341] initcall omap_mbox_init+0x0/0x1000 [omap_mailbox] returned 0 after 93913 usecs
[ 17.871721] calling omap_rng_driver_init+0x0/0x1000 [omap_rng] @ 406
[ 17.890798] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
[ 17.898626] initcall omap_rng_driver_init+0x0/0x1000 [omap_rng] returned 0 after 26213 usecs
[ 17.947632] calling drm_core_init+0x0/0x120 [drm] @ 405
[ 17.947766] [drm] Initialized drm 1.1.0 20060810
[ 17.947876] initcall drm_core_init+0x0/0x120 [drm] returned 0 after 116 usecs
[ 18.235517] calling tilcdc_drm_init+0x0/0xf94 [tilcdc] @ 405
[ 18.402011] calling tda998x_init+0x0/0x1000 [tda998x] @ 420
[ 18.402174] initcall tda998x_init+0x0/0x1000 [tda998x] returned 0 after 124 usecs
[ 18.418563] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
[ 18.523639] tda998x 0-0070: found TDA19988
[ 18.526314] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 18.526336] [drm] No driver support for vblank timestamp query.
[ 18.526817] tilcdc 4830e000.lcdc: No connectors reported connected with modes
[ 18.526846] [drm] Cannot find any crtc or sizes - going 1024x768
[ 18.537465] Console: switching to colour frame buffer device 128x48
[ 18.542622] tilcdc 4830e000.lcdc: fb0: frame buffer device
[ 18.542633] tilcdc 4830e000.lcdc: registered panic notifier
[ 18.584595] [drm] Initialized tilcdc 1.0.0 20121205 on minor 0
[ 18.584932] initcall tilcdc_drm_init+0x0/0xf94 [tilcdc] returned 0 after 341146 usecs
[ 18.766624] calling omap_sham_driver_init+0x0/0x1000 [omap_sham] @ 404
[ 18.767356] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[ 18.807734] calling omap_aes_driver_init+0x0/0x1000 [omap_aes] @ 405
[ 18.877612] initcall omap_sham_driver_init+0x0/0x1000 [omap_sham] returned 0 after 108310 usecs
[ 18.878600] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[ 18.905017] initcall omap_aes_driver_init+0x0/0x1000 [omap_aes] returned 0 after 94931 usecs
[ 19.011673] calling init_nls_iso8859_1+0x0/0x1000 [nls_iso8859_1] @ 444
[ 19.011707] initcall init_nls_iso8859_1+0x0/0x1000 [nls_iso8859_1] returned 0 after 2 usecs
[ 20.452543] audit: type=1400 audit(1430386047.132:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=499 comm="apparmor_parser"
[ 20.452619] audit: type=1400 audit(1430386047.136:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=499 comm="apparmor_parser"
[ 20.452654] audit: type=1400 audit(1430386047.136:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=499 comm="apparmor_parser"
[ 20.452685] audit: type=1400 audit(1430386047.136:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=499 comm="apparmor_parser"
[ 20.466048] audit: type=1400 audit(1430386047.148:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/ubuntu-core-launcher" pid=499 comm="apparmor_parser"
[ 20.640226] calling tps65217_regulator_init+0x0/0x1000 [tps65217_regulator] @ 401
[ 20.713323] calling cpp41_dma_driver_init+0x0/0x1000 [cppi41] @ 407
[ 20.713872] calling am335x_control_driver_init+0x0/0x1000 [phy_am335x_control] @ 403
[ 20.714712] initcall am335x_control_driver_init+0x0/0x1000 [phy_am335x_control] returned 0 after 785 usecs
[ 20.720060] audit: type=1400 audit(1430386047.400:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pastebinit.mvo_pastebinit_1.4.0.0.2" pid=512 comm="apparmor_parser"
[ 20.779110] calling dsps_usbss_driver_init+0x0/0x1000 [musb_dsps] @ 406
[ 20.798212] initcall tps65217_regulator_init+0x0/0x1000 [tps65217_regulator] returned 0 after 154225 usecs
[ 20.809995] calling am335x_phy_driver_init+0x0/0x1000 [phy_am335x] @ 405
[ 20.942269] musb-hdrc musb-hdrc.0.auto: musb_init_controller failed with status -517
[ 20.980775] initcall cpp41_dma_driver_init+0x0/0x1000 [cppi41] returned 0 after 261118 usecs
[ 21.064942] platform musb-hdrc.0.auto: Driver musb-hdrc requests probe deferral
[ 21.066094] musb-hdrc musb-hdrc.0.auto: musb_init_controller failed with status -517
[ 21.083009] 47401300.usb-phy supply vcc not found, using dummy regulator
[ 21.086773] 47401b00.usb-phy supply vcc not found, using dummy regulator
[ 21.087105] initcall am335x_phy_driver_init+0x0/0x1000 [phy_am335x] returned 0 after 270568 usecs
[ 21.096716] platform musb-hdrc.0.auto: Driver musb-hdrc requests probe deferral
[ 21.102622] musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, bulk combine, bulk split, HB-ISO Rx, HB-ISO Tx, SoftConn)
[ 21.102649] musb-hdrc: MHDRC RTL version 2.0
[ 21.102659] musb-hdrc: setup fifo_mode 4
[ 21.102679] musb-hdrc: 28/31 max ep, 16384/16384 memory
[ 21.125740] musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, bulk combine, bulk split, HB-ISO Rx, HB-ISO Tx, SoftConn)
[ 21.125769] musb-hdrc: MHDRC RTL version 2.0
[ 21.125778] musb-hdrc: setup fifo_mode 4
[ 21.125797] musb-hdrc: 28/31 max ep, 16384/16384 memory
[ 21.126000] musb-hdrc musb-hdrc.1.auto: MUSB HDRC host driver
[ 21.126040] musb-hdrc musb-hdrc.1.auto: new USB bus registered, assigned bus number 1
[ 21.127913] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 21.127933] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 21.127943] usb usb1: Product: MUSB HDRC host driver
[ 21.127952] usb usb1: Manufacturer: Linux 3.19.0-15-generic musb-hcd
[ 21.127960] usb usb1: SerialNumber: musb-hdrc.1.auto
[ 21.159002] hub 1-0:1.0: USB hub found
[ 21.164683] hub 1-0:1.0: 1 port detected
[ 21.180805] initcall dsps_usbss_driver_init+0x0/0x1000 [musb_dsps] returned 0 after 392212 usecs
[ 21.356657] net eth0: initializing cpsw version 1.12 (0)
[ 21.359088] net eth0: phy found : id is : 0x7c0f1
[ 21.359168] libphy: PHY 4a101000.mdio:01 not found
[ 21.364285] net eth0: phy 4a101000.mdio:01 not found on slave 1
[ 21.398016] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 22.028086] cgroup: new mount options do not match the existing superblock, will be ignored
[ 24.425264] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 24.425393] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
|