<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div id="yui_3_16_0_1_1434475273539_2844">Hello Team,</div><div id="yui_3_16_0_1_1434475273539_3056"><br></div><div id="yui_3_16_0_1_1434475273539_3057">I'm trying to make a commit to a checkpatch fix , and i have followed the instructions in the first patch tutorial but i'm not able to commit .</div><div id="yui_3_16_0_1_1434475273539_3273"><br></div><div id="yui_3_16_0_1_1434475273539_3106">Following were the steps done .</div><div id="yui_3_16_0_1_1434475273539_3107"><br></div><div id="yui_3_16_0_1_1434475273539_3108">1)Made changes to the file <br></div><div id="yui_3_16_0_1_1434475273539_3109"><br></div><div id="yui_3_16_0_1_1434475273539_3110">2)Run <b>git diff</b> command got the below output <br></div><div id="yui_3_16_0_1_1434475273539_3111"><br></div><div id="yui_3_16_0_1_1434475273539_3128" dir="ltr">diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c<br style="" class="">index 146ab00..02a41bc 100644<br style="" class="">--- a/drivers/staging/comedi/comedi_fops.c<br style="" class="">+++ b/drivers/staging/comedi/comedi_fops.c<br style="" class="">@@ -2611,7 +2611,7 @@ static int comedi_open(struct inode *inode, struct file *file)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (dev-&gt;attached &amp;&amp; dev-&gt;use_count == 0) {<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!try_module_get(dev-&gt;driver-&gt;module)) {<br style="" class="">-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rc = -ENOSYS;<br style="" class="">+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rc = -ENODATA;<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; goto out;<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (dev-&gt;open) {</div><div id="yui_3_16_0_1_1434475273539_3144" dir="ltr"><br style="" class=""></div><div id="yui_3_16_0_1_1434475273539_3129" dir="ltr">3) when i run <b id="yui_3_16_0_1_1434475273539_3174">git commit -a</b>&nbsp; i get the below message and the same goes for <b id="yui_3_16_0_1_1434475273539_3267">git commit -s -v </b><br></div><div id="yui_3_16_0_1_1434475273539_3155" dir="ltr"><br></div><div id="yui_3_16_0_1_1434475273539_3175" dir="ltr">bash-4.2$ git commit -a<br style="" class="">usage: git diff-index [-m] [--cached] [&lt;common diff options&gt;] &lt;tree-ish&gt; [&lt;path&gt;...]<br style="" class="">common diff options:<br style="" class="">&nbsp; -z&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output diff-raw with lines terminated with NUL.<br style="" class="">&nbsp; -p&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output patch format.<br style="" class="">&nbsp; -u&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; synonym for -p.<br style="" class="">&nbsp; --patch-with-raw<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output both a patch and the diff-raw format.<br style="" class="">&nbsp; --stat&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; show diffstat instead of patch.<br style="" class="">&nbsp; --numstat&nbsp;&nbsp;&nbsp;&nbsp; show numeric diffstat instead of patch.<br style="" class="">&nbsp; --patch-with-stat<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output a patch and prepend its diffstat.<br style="" class="">&nbsp; --name-only&nbsp;&nbsp; show only names of changed files.<br style="" class="">&nbsp; --name-status show names and status of changed files.<br style="" class="">&nbsp; --full-index&nbsp; show full object name on index lines.<br style="" class="">&nbsp; --abbrev=&lt;n&gt;&nbsp; abbreviate object names in diff-tree header and diff-raw.<br style="" class="">&nbsp; -R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; swap input file pairs.<br style="" class="">&nbsp; -B&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; detect complete rewrites.<br style="" class="">&nbsp; -M&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; detect renames.<br style="" class="">&nbsp; -C&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; detect copies.<br style="" class="">&nbsp; --find-copies-harder<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try unchanged files as candidate for copy detection.<br style="" class="">&nbsp; -l&lt;n&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; limit rename attempts up to &lt;n&gt; paths.<br style="" class="">&nbsp; -O&lt;file&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reorder diffs according to the &lt;file&gt;.<br style="" class="">&nbsp; -S&lt;string&gt;&nbsp;&nbsp;&nbsp; find filepair whose only one side contains the string.<br style="" class="">&nbsp; --pickaxe-all<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; show all files diff when -S is used and hit is found.<br style="" class="">&nbsp; -a&nbsp; --text&nbsp;&nbsp;&nbsp; treat all files as text.<br style="" class=""></div><div id="yui_3_16_0_1_1434475273539_3216" dir="ltr"><br></div><div id="yui_3_16_0_1_1434475273539_3252" dir="ltr">i'm not able to commit the changes ,let us know what could be the problem . Below is the details of the git version <br></div><div dir="ltr"><b><br></b></div><div id="yui_3_16_0_1_1434475273539_3279" dir="ltr"><b>git version 1.7.11.7</b></div><div id="yui_3_16_0_1_1434475273539_3258" dir="ltr"><b>OS : Fedora </b><br></div><div id="yui_3_16_0_1_1434475273539_3259" style="" class=""><br></div><div id="yui_3_16_0_1_1434475273539_3280" style="" class="">Regards,</div><div id="yui_3_16_0_1_1434475273539_3266" style="" class=""><br></div><div id="yui_3_16_0_1_1434475273539_3265" style="" class="">Santosh Pai<br style="" class=""></div></div></body></html>