All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PCI: Trivial comment fix
@ 2015-06-18 11:47 Yijing Wang
  2015-06-18 16:24 ` Bjorn Helgaas
  0 siblings, 1 reply; 3+ messages in thread
From: Yijing Wang @ 2015-06-18 11:47 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: linux-pci, Yijing Wang

Signed-off-by: Yijing Wang <wangyijing@huawei.com>
---
 drivers/pci/hotplug/pci_hotplug_core.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
index 56d8486..117c8f9 100644
--- a/drivers/pci/hotplug/pci_hotplug_core.c
+++ b/drivers/pci/hotplug/pci_hotplug_core.c
@@ -408,8 +408,8 @@ static struct hotplug_slot *get_slot_from_name(const char *name)
 
 /**
  * __pci_hp_register - register a hotplug_slot with the PCI hotplug subsystem
- * @bus: bus this slot is on
  * @slot: pointer to the &struct hotplug_slot to register
+ * @bus: bus this slot is on
  * @devnr: device number
  * @name: name registered with kobject core
  * @owner: caller module owner
@@ -469,7 +469,7 @@ EXPORT_SYMBOL_GPL(__pci_hp_register);
  * pci_hp_deregister - deregister a hotplug_slot with the PCI hotplug subsystem
  * @hotplug: pointer to the &struct hotplug_slot to deregister
  *
- * The @slot must have been registered with the pci hotplug subsystem
+ * The @hotplug must have been registered with the pci hotplug subsystem
  * previously with a call to pci_hp_register().
  *
  * Returns 0 if successful, anything else for an error.
@@ -509,7 +509,7 @@ EXPORT_SYMBOL_GPL(pci_hp_deregister);
  * @hotplug: pointer to the slot whose info has changed
  * @info: pointer to the info copy into the slot's info structure
  *
- * @slot must have been registered with the pci
+ * @hotplug must have been registered with the pci
  * hotplug subsystem previously with a call to pci_hp_register().
  *
  * Returns 0 if successful, anything else for an error.
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] PCI: Trivial comment fix
  2015-06-18 11:47 [PATCH] PCI: Trivial comment fix Yijing Wang
@ 2015-06-18 16:24 ` Bjorn Helgaas
  2015-06-19  3:36   ` Yijing Wang
  0 siblings, 1 reply; 3+ messages in thread
From: Bjorn Helgaas @ 2015-06-18 16:24 UTC (permalink / raw)
  To: Yijing Wang; +Cc: linux-pci

Hi Yijing,

The subject should start with a verb, e.g., "Fix DocBook comments".

On Thu, Jun 18, 2015 at 07:47:00PM +0800, Yijing Wang wrote:

This needs a changelog, even if it's a trivial one.

> Signed-off-by: Yijing Wang <wangyijing@huawei.com>
> ---
>  drivers/pci/hotplug/pci_hotplug_core.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
> index 56d8486..117c8f9 100644
> --- a/drivers/pci/hotplug/pci_hotplug_core.c
> +++ b/drivers/pci/hotplug/pci_hotplug_core.c
> @@ -408,8 +408,8 @@ static struct hotplug_slot *get_slot_from_name(const char *name)
>  
>  /**
>   * __pci_hp_register - register a hotplug_slot with the PCI hotplug subsystem
> - * @bus: bus this slot is on
>   * @slot: pointer to the &struct hotplug_slot to register
> + * @bus: bus this slot is on
>   * @devnr: device number
>   * @name: name registered with kobject core
>   * @owner: caller module owner
> @@ -469,7 +469,7 @@ EXPORT_SYMBOL_GPL(__pci_hp_register);
>   * pci_hp_deregister - deregister a hotplug_slot with the PCI hotplug subsystem
>   * @hotplug: pointer to the &struct hotplug_slot to deregister
>   *
> - * The @slot must have been registered with the pci hotplug subsystem
> + * The @hotplug must have been registered with the pci hotplug subsystem

This doesn't read like English because "hotplug" is not a noun.

Please extend your patch so the entire file consistently uses "slot" for a
struct hotplug_slot, and "pci_slot" for a struct pci_slot.  Right now, the
file is a mix of random names, which is confusing and leads to errors.

You might need to do this with more than one patch to make it possible to
review it.

>   * previously with a call to pci_hp_register().
>   *
>   * Returns 0 if successful, anything else for an error.
> @@ -509,7 +509,7 @@ EXPORT_SYMBOL_GPL(pci_hp_deregister);
>   * @hotplug: pointer to the slot whose info has changed
>   * @info: pointer to the info copy into the slot's info structure
>   *
> - * @slot must have been registered with the pci
> + * @hotplug must have been registered with the pci
>   * hotplug subsystem previously with a call to pci_hp_register().
>   *
>   * Returns 0 if successful, anything else for an error.
> -- 
> 1.7.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] PCI: Trivial comment fix
  2015-06-18 16:24 ` Bjorn Helgaas
@ 2015-06-19  3:36   ` Yijing Wang
  0 siblings, 0 replies; 3+ messages in thread
From: Yijing Wang @ 2015-06-19  3:36 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: linux-pci

On 2015/6/19 0:24, Bjorn Helgaas wrote:
> Hi Yijing,
> 
> The subject should start with a verb, e.g., "Fix DocBook comments".
> 
> On Thu, Jun 18, 2015 at 07:47:00PM +0800, Yijing Wang wrote:
> 
> This needs a changelog, even if it's a trivial one.

OK.

> 
>> Signed-off-by: Yijing Wang <wangyijing@huawei.com>
>> ---
>>  drivers/pci/hotplug/pci_hotplug_core.c |    6 +++---
>>  1 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
>> index 56d8486..117c8f9 100644
>> --- a/drivers/pci/hotplug/pci_hotplug_core.c
>> +++ b/drivers/pci/hotplug/pci_hotplug_core.c
>> @@ -408,8 +408,8 @@ static struct hotplug_slot *get_slot_from_name(const char *name)
>>  
>>  /**
>>   * __pci_hp_register - register a hotplug_slot with the PCI hotplug subsystem
>> - * @bus: bus this slot is on
>>   * @slot: pointer to the &struct hotplug_slot to register
>> + * @bus: bus this slot is on
>>   * @devnr: device number
>>   * @name: name registered with kobject core
>>   * @owner: caller module owner
>> @@ -469,7 +469,7 @@ EXPORT_SYMBOL_GPL(__pci_hp_register);
>>   * pci_hp_deregister - deregister a hotplug_slot with the PCI hotplug subsystem
>>   * @hotplug: pointer to the &struct hotplug_slot to deregister
>>   *
>> - * The @slot must have been registered with the pci hotplug subsystem
>> + * The @hotplug must have been registered with the pci hotplug subsystem
> 
> This doesn't read like English because "hotplug" is not a noun.
> 
> Please extend your patch so the entire file consistently uses "slot" for a
> struct hotplug_slot, and "pci_slot" for a struct pci_slot.  Right now, the
> file is a mix of random names, which is confusing and leads to errors.
> 
> You might need to do this with more than one patch to make it possible to
> review it.


I rework this patch and rename struct hotplug_slot to slot, and rename
struct pci_slot to pci_slot, so we could distinguish them easily.
Also I would update the comment in that patch.

Thanks!
Yijing.

> 
>>   * previously with a call to pci_hp_register().
>>   *
>>   * Returns 0 if successful, anything else for an error.
>> @@ -509,7 +509,7 @@ EXPORT_SYMBOL_GPL(pci_hp_deregister);
>>   * @hotplug: pointer to the slot whose info has changed
>>   * @info: pointer to the info copy into the slot's info structure
>>   *
>> - * @slot must have been registered with the pci
>> + * @hotplug must have been registered with the pci
>>   * hotplug subsystem previously with a call to pci_hp_register().
>>   *
>>   * Returns 0 if successful, anything else for an error.
>> -- 
>> 1.7.1
>>
> 
> 


-- 
Thanks!
Yijing


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-19  3:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-18 11:47 [PATCH] PCI: Trivial comment fix Yijing Wang
2015-06-18 16:24 ` Bjorn Helgaas
2015-06-19  3:36   ` Yijing Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.