unclouded_ has quit [Remote host closed the connection]
unclouded has quit [Quit: Leaving]
unclouded has joined #qi-hardware
pcercuei has quit [Quit: dodo]
<mth>
apelete: "Unable to handle kernel paging request at virtual address 0000001c" means a segfault
<mth>
most likely it is accessing a field of a struct at offset 0x1c, where the pointer to the struct is NULL
<mth>
most likely cause is that the platform data is missing, therefore pdata is NULL and the statement "pdata->platform_ops = &jz4740_musb_ops;" is where it breaks
<mth>
adding a check to make the probe fail on !pdata would help
<mth>
so it's actually quite helpful, if you know how to read it ;)
larsc has quit [Ping timeout: 264 seconds]
larsc has joined #qi-hardware
unclouded has quit [Ping timeout: 248 seconds]
unclouded has joined #qi-hardware
unclouded has quit [Ping timeout: 246 seconds]
heberth has quit [Quit: leaving]
ccat has left #qi-hardware [#qi-hardware]
kyak has quit [Ping timeout: 248 seconds]
kyak has joined #qi-hardware
kyak has joined #qi-hardware
wolfspraul has joined #qi-hardware
<apelete>
mth: thanks a lot for the insight, I will try that and let you know how it goes