Comment 68 for bug 1851518

Revision history for this message
Mike Pozulp (gannon1) wrote :

@PowerKiKi

Wondeful, thank you for clarifying. =)

> I'd love to submit the patch, but I've never done that before. I'll see if I can figure it out later tonight...

That would be great - go for it! Nick Desaulniers has a good blog post which describes how to submit a patch [1]. I read it and then ran this sequence of commands to generate and submit my first patch:

git commit
git format-patch HEAD~1
./scripts/checkpatch.pl 0001-ALSA-hda-realtek-Add-quirk-for-Samsung-Notebook.patch
git send-email 0001-ALSA-hda-realtek-Add-quirk-for-Samsung-Notebook.patch
./scripts/get_maintainer.pl 0001-ALSA-hda-realtek-Add-quirk-for-Samsung-Notebook.patch
git send-email \
--cc-cmd='./scripts/get_maintainer.pl 0001-ALSA-hda-realtek-Add-quirk-for-Samsung-Notebook.patch' \
0001-ALSA-hda-realtek-Add-quirk-for-Samsung-Notebook.patch

[1] http://nickdesaulniers.github.io/blog/2017/05/16/submitting-your-first-patch-to-the-linux-kernel-and-responding-to-feedback/