On Thu, Oct 22, 2015 at 10:04 PM, Takashi Iwai tiwai@suse.de wrote:
On Fri, 23 Oct 2015 00:05:24 +0200, Caleb Crome wrote:
commit 23521f2e04df7ae39ccdbc7b4a9aa59220b56495 Author: Caleb Crome ccrome@gmail.com Date: Tue Oct 20 20:57:57 2015 +0000
Change maximum number of channels from 2 to 64. Added a round-robbin frequency assignment from the command line so that if you specify -F 100:200:250 on the command line, then all subsequent channels will get assigned frequencies like this first set. So by specifying -c 6 -F 100:200:250 the resulting frequencies for the 6 channels will be the same as if you specified -c 6 -F 100:200:250:100:200:250
Could you reformat the patch properly as applicable via git-am? Use git-format-patch or any other command. Also, don't forget to give your signed-off-by tag.
Done! I knew there must be a better way than copy-paste of git diff outputs. :-)
I had to send twice because the first commit I forgot to add my sign-off key. Sorry.
-Caleb
diff --git a/bat/bat.c b/bat/bat.c index 56cfaf6..57c9db8 100644 --- a/bat/bat.c +++ b/bat/bat.c @@ -72,16 +72,31 @@ err_exit:
static void get_sine_frequencies(struct bat *bat, char *freq) {
- char *tmp1;
The indentation looks wrong.
thanks,
Takashi