soc: qcom: smsm: Fix some kernel-doc formatting and naming problems
Fixes the following W=1 kernel build warning(s): drivers/soc/qcom/smsm.c:140: warning: Function parameter or member 'mask' not described in 'smsm_update_bits' drivers/soc/qcom/smsm.c:140: warning: Excess function parameter 'offset' description in 'smsm_update_bits' drivers/soc/qcom/smsm.c:257: warning: bad line: drivers/soc/qcom/smsm.c:260: warning: bad line: Cc: Andy Gross <agross@kernel.org> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: linux-arm-msm@vger.kernel.org Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lore.kernel.org/r/20201103152838.1290217-18-lee.jones@linaro.org Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
parent
fc3699c698
commit
fac312df31
|
@ -130,7 +130,7 @@ struct smsm_host {
|
||||||
/**
|
/**
|
||||||
* smsm_update_bits() - change bit in outgoing entry and inform subscribers
|
* smsm_update_bits() - change bit in outgoing entry and inform subscribers
|
||||||
* @data: smsm context pointer
|
* @data: smsm context pointer
|
||||||
* @offset: bit in the entry
|
* @mask: value mask
|
||||||
* @value: new value
|
* @value: new value
|
||||||
*
|
*
|
||||||
* Used to set and clear the bits in the outgoing/local entry and inform
|
* Used to set and clear the bits in the outgoing/local entry and inform
|
||||||
|
@ -254,10 +254,8 @@ static void smsm_mask_irq(struct irq_data *irqd)
|
||||||
* smsm_unmask_irq() - subscribe to cascades of IRQs of a certain status bit
|
* smsm_unmask_irq() - subscribe to cascades of IRQs of a certain status bit
|
||||||
* @irqd: IRQ handle to be unmasked
|
* @irqd: IRQ handle to be unmasked
|
||||||
*
|
*
|
||||||
|
|
||||||
* This subscribes the local CPU to interrupts upon changes to the defined
|
* This subscribes the local CPU to interrupts upon changes to the defined
|
||||||
* status bit. The bit is also marked for cascading.
|
* status bit. The bit is also marked for cascading.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
static void smsm_unmask_irq(struct irq_data *irqd)
|
static void smsm_unmask_irq(struct irq_data *irqd)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue