<div dir="ltr">Hi<div>There is <a href="http://checkpatch.pl">checkpatch.pl</a> script where You can check if You wrote code in your kernel module according to linux kernel style. </div><div>However can I ignore warning message?</div><div>WARNING: quoted string split across lines<br>#974: FILE: fpgax67-core.c:974:<br>+               dev_err(&pdev->dev, "registration not done, driver is already "<br>+                                                       "registered\n");<br></div><div><br></div><div>If I don't split line I will have another warning that 80 characters is exceeded.</div><div><br></div><div>For sure I can ignore warnings about:</div><div>WARNING: struct  should normally be const<br>#998: FILE: 

fpgax67-core.c

:998:<br>+int 

fpgax67_unregister(struct platform_device *pdev)<br></div><div><br></div><div>For sure all errors must be fixed like:</div><div>const char* tmp -> change to -> const char *tmp;</div><div>if(  => if (   #insert space</div><div><br></div><div>Generally I don't know how much warnings should I correct. If it is mandatory or only good practise and I can omit some if it doesn't make sense.</div></div>