Subject: [PATCH] hw_random: core: Remove unnecessary new line in MODULE_PARM_DESC

While using MODULE_PARM_DESC there is a new line which is not required.
Remove it.

Signed-off-by: PrasannaKumar Muralidharan <[email protected]>
---
drivers/char/hw_random/core.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/char/hw_random/core.c b/drivers/char/hw_random/core.c
index 328d065..323f04c 100644
--- a/drivers/char/hw_random/core.c
+++ b/drivers/char/hw_random/core.c
@@ -43,11 +43,10 @@ static unsigned short current_quality;
static unsigned short default_quality; /* = 0; default to "off" */

module_param(current_quality, ushort, 0644);
-MODULE_PARM_DESC(current_quality,
- "current hwrng entropy estimation per mill");
+MODULE_PARM_DESC(current_quality, "current hwrng entropy estimation per mill");
+
module_param(default_quality, ushort, 0644);
-MODULE_PARM_DESC(default_quality,
- "default entropy content of hwrng per mill");
+MODULE_PARM_DESC(default_quality, "default entropy content of hwrng per mill");

static size_t rng_buffer_size(void)
{
--
2.10.0


2017-10-30 06:54:17

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH] hw_random: core: Remove unnecessary new line in MODULE_PARM_DESC

On Thu, Oct 26, 2017 at 10:00:29PM +0530, PrasannaKumar Muralidharan wrote:
> While using MODULE_PARM_DESC there is a new line which is not required.
> Remove it.
>
> Signed-off-by: PrasannaKumar Muralidharan <[email protected]>

Please stop sending pointless patches like this.

Thanks,
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Subject: Re: [PATCH] hw_random: core: Remove unnecessary new line in MODULE_PARM_DESC

Hi Herbert,

On 30 October 2017 at 12:23, Herbert Xu <[email protected]> wrote:
> On Thu, Oct 26, 2017 at 10:00:29PM +0530, PrasannaKumar Muralidharan wrote:
>> While using MODULE_PARM_DESC there is a new line which is not required.
>> Remove it.
>>
>> Signed-off-by: PrasannaKumar Muralidharan <[email protected]>
>
> Please stop sending pointless patches like this.

Okay.

Regards,
PrasannaKumar