Re: [PATCH] sound/pci/hda: Changes 'blacklist/whitelist' to 'blocklist/allowlist'

2020-07-16 Thread Takashi Iwai
On Wed, 15 Jul 2020 20:45:43 +0200, Paul Schulz wrote: > > Good news is that appears to be the only case of this particular usage > with MODULE_PARM_DESC > Searching for 'blacklist' and MODULE_PARM gives the following: > > sound/pci/hda/hda_intel.c:183:MODULE_PARM_DESC(pm_blacklist, "Enable >

Re: [PATCH] sound/pci/hda: Changes 'blacklist/whitelist' to 'blocklist/allowlist'

2020-07-15 Thread Paul Schulz
Good news is that appears to be the only case of this particular usage with MODULE_PARM_DESC Searching for 'blacklist' and MODULE_PARM gives the following: sound/pci/hda/hda_intel.c:183:MODULE_PARM_DESC(pm_blacklist, "Enable power-management blacklist");

Re: [PATCH] sound/pci/hda: Changes 'blacklist/whitelist' to 'blocklist/allowlist'

2020-07-15 Thread Paul Schulz
Yep. +1 for logic On Thu, 16 Jul 2020 at 03:11, Jonathan Corbet wrote: > > On Thu, 16 Jul 2020 01:52:04 +0930 > Paul Schulz wrote: > > > -static bool pm_blacklist = true; > > -module_param(pm_blacklist, bool, 0644); > > -MODULE_PARM_DESC(pm_blacklist, "Enable power-management blacklist"); > >

Re: [PATCH] sound/pci/hda: Changes 'blacklist/whitelist' to 'blocklist/allowlist'

2020-07-15 Thread Jonathan Corbet
On Thu, 16 Jul 2020 01:52:04 +0930 Paul Schulz wrote: > -static bool pm_blacklist = true; > -module_param(pm_blacklist, bool, 0644); > -MODULE_PARM_DESC(pm_blacklist, "Enable power-management blacklist"); > +static bool pm_blocklist = true; > +module_param(pm_blocklist, bool, 0644); >

[PATCH] sound/pci/hda: Changes 'blacklist/whitelist' to 'blocklist/allowlist'

2020-07-15 Thread Paul Schulz
This edit changes instances of 'blacklist' and 'whitelist' to 'blocklist' and 'allowlist' (and associated variations) in sound/pci/hda. This is a functionally trivial patch and has no other effect. Signed-off-by: Paul Schulz --- Documentation/sound/hd-audio/notes.rst | 2 +-