linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/3] drivers/clk/clk-asm9260.c
@ 2020-08-10  0:59 YourName
  2020-08-10  8:50 ` Sergei Shtylyov
  0 siblings, 1 reply; 3+ messages in thread
From: YourName @ 2020-08-10  0:59 UTC (permalink / raw)
  To: marcel, johan.hedberg
  Cc: mturquette, linux-ide, linux-kernel, linux-bluetooth, linux-clk,
	argoz1701

From: Daniel <argoz1701@gmail.com>

---
 drivers/ata/acard-ahci.c  |  6 +++---
 drivers/bluetooth/bfusb.c |  5 ++---
 drivers/clk/clk-asm9260.c | 12 ++++++------
 3 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/drivers/ata/acard-ahci.c b/drivers/ata/acard-ahci.c
index 2a04e8abd397..3ffb21f3e88b 100644
--- a/drivers/ata/acard-ahci.c
+++ b/drivers/ata/acard-ahci.c
@@ -79,10 +79,10 @@ static struct ata_port_operations acard_ops = {
 
 #define AHCI_HFLAGS(flags)	.private_data	= (void *)(flags)
 
-static const struct ata_port_info acard_ahci_port_info[] = {
+static const struct ata_port_info acard_ahci_port_info[] ={
 	[board_acard_ahci] =
-	{
-		AHCI_HFLAGS	(AHCI_HFLAG_NO_NCQ),
+	
+        {       AHCI_HFLAGS	(AHCI_HFLAG_NO_NCQ),
 		.flags		= AHCI_FLAG_COMMON,
 		.pio_mask	= ATA_PIO4,
 		.udma_mask	= ATA_UDMA6,
diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c
index 5a321b4076aa..dc6a62cb1941 100644
--- a/drivers/bluetooth/bfusb.c
+++ b/drivers/bluetooth/bfusb.c
@@ -355,15 +355,14 @@ static void bfusb_rx_complete(struct urb *urb)
 	while (count) {
 		hdr = buf[0] | (buf[1] << 8);
 
-		if (hdr & 0x4000) {
+		if (hdr & 0x4000) 
 			len = 0;
 			count -= 2;
 			buf   += 2;
-		} else {
+		 else {
 			len = (buf[2] == 0) ? 256 : buf[2];
 			count -= 3;
 			buf   += 3;
-		}
 
 		if (count < len) {
 			bt_dev_err(data->hdev, "block extends over URB buffer ranges");
diff --git a/drivers/clk/clk-asm9260.c b/drivers/clk/clk-asm9260.c
index bacebd457e6f..4e608807a00a 100644
--- a/drivers/clk/clk-asm9260.c
+++ b/drivers/clk/clk-asm9260.c
@@ -92,8 +92,8 @@ static const struct asm9260_div_clk asm9260_div_clks[] __initconst = {
 	{ CLKID_SYS_CPU,	"cpu_div", "main_gate", HW_CPUCLKDIV },
 	{ CLKID_SYS_AHB,	"ahb_div", "cpu_div", HW_SYSAHBCLKDIV },
 
-	/* i2s has two deviders: one for only external mclk and internal
-	 * devider for all clks. */
+	//i2s has two deviders: one for only external mclk and internal
+	//devider for all clks.
 	{ CLKID_SYS_I2S0M,	"i2s0m_div", "i2s0_mclk",  HW_I2S0MCLKDIV },
 	{ CLKID_SYS_I2S1M,	"i2s1m_div", "i2s1_mclk",  HW_I2S1MCLKDIV },
 	{ CLKID_SYS_I2S0S,	"i2s0s_div", "i2s0_gate",  HW_I2S0SCLKDIV },
@@ -232,10 +232,10 @@ static const struct asm9260_gate_data asm9260_ahb_gates[] __initconst = {
 		HW_AHBCLKCTRL1,	16 },
 };
 
-static const char __initdata *main_mux_p[] =   { NULL, NULL };
-static const char __initdata *i2s0_mux_p[] =   { NULL, NULL, "i2s0m_div"};
-static const char __initdata *i2s1_mux_p[] =   { NULL, NULL, "i2s1m_div"};
-static const char __initdata *clkout_mux_p[] = { NULL, NULL, "rtc"};
+static const char __initconst *main_mux_p[] =   { NULL, NULL };
+static const char __initconst *i2s0_mux_p[] =   { NULL, NULL, "i2s0m_div"};
+static const char __initconst *i2s1_mux_p[] =   { NULL, NULL, "i2s1m_div"};
+static const char __initconst *clkout_mux_p[] = { NULL, NULL, "rtc"};
 static u32 three_mux_table[] = {0, 1, 3};
 
 static struct asm9260_mux_clock asm9260_mux_clks[] __initdata = {
-- 
2.25.1


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

* Re: [PATCH 3/3] drivers/clk/clk-asm9260.c
  2020-08-10  0:59 [PATCH 3/3] drivers/clk/clk-asm9260.c YourName
@ 2020-08-10  8:50 ` Sergei Shtylyov
  2020-08-10 20:01   ` Marcel Holtmann
  0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2020-08-10  8:50 UTC (permalink / raw)
  To: YourName, marcel, johan.hedberg
  Cc: mturquette, linux-ide, linux-kernel, linux-bluetooth, linux-clk

Hello!

On 10.08.2020 3:59, YourName wrote:

> From: Daniel <argoz1701@gmail.com>

    Full name needed here.

> ---
>   drivers/ata/acard-ahci.c  |  6 +++---
>   drivers/bluetooth/bfusb.c |  5 ++---
>   drivers/clk/clk-asm9260.c | 12 ++++++------
>   3 files changed, 11 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/ata/acard-ahci.c b/drivers/ata/acard-ahci.c
> index 2a04e8abd397..3ffb21f3e88b 100644
> --- a/drivers/ata/acard-ahci.c
> +++ b/drivers/ata/acard-ahci.c
> @@ -79,10 +79,10 @@ static struct ata_port_operations acard_ops = {
>   
>   #define AHCI_HFLAGS(flags)	.private_data	= (void *)(flags)
>   
> -static const struct ata_port_info acard_ahci_port_info[] = {
> +static const struct ata_port_info acard_ahci_port_info[] ={
>   	[board_acard_ahci] =
> -	{
> -		AHCI_HFLAGS	(AHCI_HFLAG_NO_NCQ),
> +	
> +        {       AHCI_HFLAGS	(AHCI_HFLAG_NO_NCQ),

    This does nothing except ruining the valid code formatting.

>   		.flags		= AHCI_FLAG_COMMON,
>   		.pio_mask	= ATA_PIO4,
>   		.udma_mask	= ATA_UDMA6,
> diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c
> index 5a321b4076aa..dc6a62cb1941 100644
> --- a/drivers/bluetooth/bfusb.c
> +++ b/drivers/bluetooth/bfusb.c
> @@ -355,15 +355,14 @@ static void bfusb_rx_complete(struct urb *urb)
>   	while (count) {
>   		hdr = buf[0] | (buf[1] << 8);
>   
> -		if (hdr & 0x4000) {
> +		if (hdr & 0x4000)
>   			len = 0;
>   			count -= 2;
>   			buf   += 2;
> -		} else {
> +		 else {
>   			len = (buf[2] == 0) ? 256 : buf[2];
>   			count -= 3;
>   			buf   += 3;
> -		}

    This just ruins the code.

>   
>   		if (count < len) {
>   			bt_dev_err(data->hdev, "block extends over URB buffer ranges");
> diff --git a/drivers/clk/clk-asm9260.c b/drivers/clk/clk-asm9260.c
> index bacebd457e6f..4e608807a00a 100644
> --- a/drivers/clk/clk-asm9260.c
> +++ b/drivers/clk/clk-asm9260.c
> @@ -92,8 +92,8 @@ static const struct asm9260_div_clk asm9260_div_clks[] __initconst = {
>   	{ CLKID_SYS_CPU,	"cpu_div", "main_gate", HW_CPUCLKDIV },
>   	{ CLKID_SYS_AHB,	"ahb_div", "cpu_div", HW_SYSAHBCLKDIV },
>   
> -	/* i2s has two deviders: one for only external mclk and internal
> -	 * devider for all clks. */
> +	//i2s has two deviders: one for only external mclk and internal
> +	//devider for all clks.

    Divider. :-) This is not the preferred multi-line comment formatting anyway.

>   	{ CLKID_SYS_I2S0M,	"i2s0m_div", "i2s0_mclk",  HW_I2S0MCLKDIV },
>   	{ CLKID_SYS_I2S1M,	"i2s1m_div", "i2s1_mclk",  HW_I2S1MCLKDIV },
>   	{ CLKID_SYS_I2S0S,	"i2s0s_div", "i2s0_gate",  HW_I2S0SCLKDIV },
[...]

MBR, Sergei

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

* Re: [PATCH 3/3] drivers/clk/clk-asm9260.c
  2020-08-10  8:50 ` Sergei Shtylyov
@ 2020-08-10 20:01   ` Marcel Holtmann
  0 siblings, 0 replies; 3+ messages in thread
From: Marcel Holtmann @ 2020-08-10 20:01 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: YourName, Johan Hedberg, mturquette, linux-ide, kernel list,
	Bluetooth Kernel Mailing List, linux-clk

Hi,

>> From: Daniel <argoz1701@gmail.com>
> 
>  Full name needed here.
> 
>> ---
>> drivers/ata/acard-ahci.c  |  6 +++---
>> drivers/bluetooth/bfusb.c |  5 ++---
>> drivers/clk/clk-asm9260.c | 12 ++++++------
>> 3 files changed, 11 insertions(+), 12 deletions(-)

please don’t intermix patches for different subsystems. And have a proper commit message explaining what is changed.

Regards

Marcel


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

end of thread, other threads:[~2020-08-10 20:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-10  0:59 [PATCH 3/3] drivers/clk/clk-asm9260.c YourName
2020-08-10  8:50 ` Sergei Shtylyov
2020-08-10 20:01   ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).