<div dir="ltr">Thanks Valdis,<div>After applying the patch, I verified in my environment and the patch has fixed the issue. </div><div><br></div><div>Best Regards</div><div>MishraDk</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, May 12, 2019 at 1:12 PM Valdis Klētnieks <<a href="mailto:valdis.kletnieks@vt.edu">valdis.kletnieks@vt.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Sun, 12 May 2019 11:45:24 +0530, Deepak Mishra said:<br>
<br>
> When I run <a href="http://checkpatch.pl" rel="noreferrer" target="_blank">checkpatch.pl</a>, for every file I get the follwong or similar<br>
> error. Could you please help if this is my environment issue or actually<br>
> error in code which I need to fix ?<br>
><br>
> I executed the following in command prompt.<br>
> perl scripts/<a href="http://checkpatch.pl" rel="noreferrer" target="_blank">checkpatch.pl</a> -f drivers/staging/rtl8712/* |less<br>
><br>
> The error I observe<br>
> drivers/staging/rtl8712/rtl871x_rf.h<br>
<br>
Found the problem, patch submitted.  It's a one-line fix:<br>
<br>
diff --git a/scripts/spdxcheck.py b/scripts/spdxcheck.py<br>
index 4fe392e507fb..7abd5f5cb14d 100755<br>
--- a/scripts/spdxcheck.py<br>
+++ b/scripts/spdxcheck.py<br>
@@ -32,7 +32,7 @@ import os<br>
 def read_spdxdata(repo):<br>
<br>
     # The subdirectories of LICENSES in the kernel source<br>
-    license_dirs = [ "preferred", "other", "exceptions" ]<br>
+    license_dirs = [ "preferred", "dual", "deprecated", "exceptions" ]<br>
     lictree = repo.head.commit.tree['LICENSES']<br>
<br>
<br>
<br>
<br>
</blockquote></div>