RE: Issue with SYS_INIT() function for Binding

Hi,

I'm running into quite a strange problem which is that when trying to use SYS_INIT function, getting an error: invalid conversion 

from 'int (*)()' to 'int (*)(const device*). 

ERROR message

I have seen all the related issues in the forum, But haven't come across any clear solution. 

kindly suggest how to solve this issue.

Thanks in advance.

  • Hi,

     

    The function pointer SYS_INIT takes in a parameter, which your function does not. The compiler then gives an error of conversion.

    Change your function to:

     

    And see if it works better now.

     

    Kind regards,

    Håkon