At Fri, 29 Aug 2008 13:01:00 +0200, Maximilian Rehkopf wrote:
This enables MIDI on Terratec Aureon 7.1 Universe cards specifically. Apparently the other envy24ht-based Aureon cards do not have MIDI ports, hence I added a Universe specific eeprom array.
The newer cards (Aureon 7.1 PCI / 5.1 PCI/Fun) have MIDI but use a CMI DSP so this driver does not concern them at all.
I am new to git, do I have to perform any git operations regarding the patch myself?
Signed-off-by: Maximilian Rehkopf otakon@gmx.net
Thanks, applied with minor fixes of spacing.
About create a patch via git, usually either of the following:
- Commit changes and create a patch via git-show or git-format-patch
... change your tree % git commit -a --sign % git show --pretty=email > mypatch or % git format-patch HEAD~..HEAD
- Simply run git-diff to create a patch
... change your tree % git diff > mypatch
The former way is helpful for us since it can be applied as is. In the latter case, you'll need to write the patch description and sign-off manually in your mail.
In either case, better to run checkpatch.pl once to check the coding style before submission. The script is found in scripts directory of linux kernel tree.
Takashi