From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH v4 08/14] ASoC: SOF: Add DSP HW abstraction operations Date: Thu, 14 Feb 2019 14:21:58 +0100 Message-ID: References: <20190213220734.10471-1-pierre-louis.bossart@linux.intel.com> <20190213220734.10471-9-pierre-louis.bossart@linux.intel.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20190213220734.10471-9-pierre-louis.bossart@linux.intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Pierre-Louis Bossart Cc: alsa-devel@alsa-project.org, andriy.shevchenko@intel.com, Daniel Baluta , liam.r.girdwood@linux.intel.com, vkoul@kernel.org, broonie@kernel.org, Alan Cox , sound-open-firmware@alsa-project.org List-Id: alsa-devel@alsa-project.org On Wed, 13 Feb 2019 23:07:28 +0100, Pierre-Louis Bossart wrote: > +int snd_sof_pci_update_bits_unlocked(struct snd_sof_dev *sdev, u32 offset, > + u32 mask, u32 value) > +{ > + struct pci_dev *pci = to_pci_dev(sdev->dev); > + unsigned int old, new; > + u32 ret = ~0; /* explicit init to remove uninitialized use warnings */ > + > + pci_read_config_dword(pci, offset, &ret); > + old = ret; > + dev_dbg(sdev->dev, "Debug PCIR: %8.8x at %8.8x\n", old & mask, offset); > + > + new = (old & (~mask)) | (value & mask); > + > + if (old == new) > + return false; > + > + pci_write_config_dword(pci, offset, new); > + dev_dbg(sdev->dev, "Debug PCIW: %8.8x at %8.8x\n", value, > + offset); > + > + return true; > +} > +EXPORT_SYMBOL(snd_sof_pci_update_bits_unlocked); Better to change the return type to bool to make clearer. thanks, Takashi