All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/
@ 2017-02-17 15:36 Geert Uytterhoeven
  2017-02-17 15:36 ` [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/ Geert Uytterhoeven
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Geert Uytterhoeven @ 2017-02-17 15:36 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: linux-kernel, Geert Uytterhoeven, Bruno Prémont, linux-input

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Bruno Prémont <bonbons@linux-vserver.org>
Cc: linux-input@vger.kernel.org
---
 drivers/hid/hid-picolcd_debugfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/hid-picolcd_debugfs.c b/drivers/hid/hid-picolcd_debugfs.c
index 3c13af6844108f97..3e0feb4bb5380978 100644
--- a/drivers/hid/hid-picolcd_debugfs.c
+++ b/drivers/hid/hid-picolcd_debugfs.c
@@ -736,7 +736,7 @@ void picolcd_debug_raw_event(struct picolcd_data *data,
 		}
 		break;
 	case REPORT_MEMORY:
-		/* Data buffer in response to REPORT_READ_MEMORY or REPORT_WRTIE_MEMORY */
+		/* Data buffer in response to REPORT_READ_MEMORY or REPORT_WRITE_MEMORY */
 		snprintf(buff, BUFF_SZ, "report %s (%d, size=%d)\n",
 			"REPORT_MEMORY", report->id, size-1);
 		hid_debug_event(hdev, buff);
-- 
1.9.1

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

* [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/
  2017-02-17 15:36 [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Geert Uytterhoeven
@ 2017-02-17 15:36 ` Geert Uytterhoeven
  2017-02-17 16:14   ` Larry Finger
  2017-02-17 15:36 ` [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/ Geert Uytterhoeven
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 13+ messages in thread
From: Geert Uytterhoeven @ 2017-02-17 15:36 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: linux-kernel, Geert Uytterhoeven, Larry Finger, Chaoming Li, netdev

As per symmetry with _rtl8821ae_dbi_read(), "wrtie" is not a funky
register acronym, but a simple misspelling of "write".

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Chaoming Li <chaoming_li@realsil.com.cn>
Cc: netdev@vger.kernel.org
---
 drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
index 4f83eee1ff75bc81..546f085afb8f42fa 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
@@ -1135,13 +1135,13 @@ static u8 _rtl8821ae_dbi_read(struct rtl_priv *rtlpriv, u16 addr)
 static void _rtl8821ae_dbi_write(struct rtl_priv *rtlpriv, u16 addr, u8 data)
 {
 	u8 tmp = 0, count = 0;
-	u16 wrtie_addr, remainder = addr % 4;
+	u16 write_addr, remainder = addr % 4;
 
-	wrtie_addr = REG_DBI_WDATA + remainder;
-	rtl_write_byte(rtlpriv, wrtie_addr, data);
+	write_addr = REG_DBI_WDATA + remainder;
+	rtl_write_byte(rtlpriv, write_addr, data);
 
-	wrtie_addr = (addr & 0xfffc) | (BIT(0) << (remainder + 12));
-	rtl_write_word(rtlpriv, REG_DBI_ADDR, wrtie_addr);
+	write_addr = (addr & 0xfffc) | (BIT(0) << (remainder + 12));
+	rtl_write_word(rtlpriv, REG_DBI_ADDR, write_addr);
 
 	rtl_write_byte(rtlpriv, REG_DBI_FLAG, 0x1);
 
-- 
1.9.1

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

* [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/
  2017-02-17 15:36 [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Geert Uytterhoeven
  2017-02-17 15:36 ` [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/ Geert Uytterhoeven
@ 2017-02-17 15:36 ` Geert Uytterhoeven
  2017-02-18  9:17     ` Christian König
  2017-02-17 15:36 ` [PATCH trivial 4/4] PM / Documentation: Spelling s/wrtie/write/ Geert Uytterhoeven
  2017-02-18  9:24 ` [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Bruno Prémont
  3 siblings, 1 reply; 13+ messages in thread
From: Geert Uytterhoeven @ 2017-02-17 15:36 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: linux-kernel, Geert Uytterhoeven, Alex Deucher,
	Christian König, dri-devel

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: dri-devel@lists.freedesktop.orgamd-gfx@lists.freedesktop.org
---
 drivers/gpu/drm/amd/amdgpu/cikd.h | 2 +-
 drivers/gpu/drm/radeon/cikd.h     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/cikd.h b/drivers/gpu/drm/amd/amdgpu/cikd.h
index 6cbd913fd12ed6f9..6a9e38a3d2a0bbee 100644
--- a/drivers/gpu/drm/amd/amdgpu/cikd.h
+++ b/drivers/gpu/drm/amd/amdgpu/cikd.h
@@ -502,7 +502,7 @@
 #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
 #define	SDMA_OPCODE_WRITE				  2
 #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
-#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
+#       define SDMA_WRITE_SUB_OPCODE_TILED                1
 #define	SDMA_OPCODE_INDIRECT_BUFFER			  4
 #define	SDMA_OPCODE_FENCE				  5
 #define	SDMA_OPCODE_TRAP				  6
diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h
index 48db93577c1dacad..e21015475ed52f31 100644
--- a/drivers/gpu/drm/radeon/cikd.h
+++ b/drivers/gpu/drm/radeon/cikd.h
@@ -2016,7 +2016,7 @@
 #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
 #define	SDMA_OPCODE_WRITE				  2
 #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
-#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
+#       define SDMA_WRITE_SUB_OPCODE_TILED                1
 #define	SDMA_OPCODE_INDIRECT_BUFFER			  4
 #define	SDMA_OPCODE_FENCE				  5
 #define	SDMA_OPCODE_TRAP				  6
-- 
1.9.1

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

* [PATCH trivial 4/4] PM / Documentation: Spelling s/wrtie/write/
  2017-02-17 15:36 [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Geert Uytterhoeven
  2017-02-17 15:36 ` [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/ Geert Uytterhoeven
  2017-02-17 15:36 ` [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/ Geert Uytterhoeven
@ 2017-02-17 15:36 ` Geert Uytterhoeven
  2017-02-18  1:19   ` Rafael J. Wysocki
  2017-02-18  9:24 ` [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Bruno Prémont
  3 siblings, 1 reply; 13+ messages in thread
From: Geert Uytterhoeven @ 2017-02-17 15:36 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: linux-kernel, Geert Uytterhoeven, Rafael J. Wysocki, linux-pm

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: linux-pm@vger.kernel.org
---
 Documentation/power/states.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/power/states.txt b/Documentation/power/states.txt
index 008ecb588317bc1d..bc4548245a243134 100644
--- a/Documentation/power/states.txt
+++ b/Documentation/power/states.txt
@@ -25,7 +25,7 @@ to be used subsequently to change to the one represented by that string.
 Consequently, there are two ways to cause the system to go into the
 Suspend-To-Idle sleep state.  The first one is to write "freeze" directly to
 /sys/power/state.  The second one is to write "s2idle" to /sys/power/mem_sleep
-and then to wrtie "mem" to /sys/power/state.  Similarly, there are two ways
+and then to write "mem" to /sys/power/state.  Similarly, there are two ways
 to cause the system to go into the Power-On Suspend sleep state (the strings to
 write to the control files in that case are "standby" or "shallow" and "mem",
 respectively) if that state is supported by the platform.  In turn, there is
-- 
1.9.1

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

* Re: [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/
  2017-02-17 15:36 ` [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/ Geert Uytterhoeven
@ 2017-02-17 16:14   ` Larry Finger
  2017-02-17 16:19     ` Geert Uytterhoeven
  0 siblings, 1 reply; 13+ messages in thread
From: Larry Finger @ 2017-02-17 16:14 UTC (permalink / raw)
  To: Geert Uytterhoeven, Jiri Kosina; +Cc: linux-kernel, Chaoming Li, netdev

On 02/17/2017 09:36 AM, Geert Uytterhoeven wrote:
> As per symmetry with _rtl8821ae_dbi_read(), "wrtie" is not a funky
> register acronym, but a simple misspelling of "write".
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Larry Finger <Larry.Finger@lwfinger.net>
> Cc: Chaoming Li <chaoming_li@realsil.com.cn>
> Cc: netdev@vger.kernel.org

I'm not sure that it is possible to have a typo in a variable name. That seems 
to be within an author's prerogative. Nonetheless, the patch is OK other than it 
was sent to the wrong destination. Patches for this driver should go through 
linux-wireless@vger.kernel.org. Kalle Valo is the wireless maintainer, but it is 
not necessary to send to him directly as he usually picks up the patches from 
Patchwork.

Larry

> ---
>  drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
> index 4f83eee1ff75bc81..546f085afb8f42fa 100644
> --- a/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
> +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
> @@ -1135,13 +1135,13 @@ static u8 _rtl8821ae_dbi_read(struct rtl_priv *rtlpriv, u16 addr)
>  static void _rtl8821ae_dbi_write(struct rtl_priv *rtlpriv, u16 addr, u8 data)
>  {
>  	u8 tmp = 0, count = 0;
> -	u16 wrtie_addr, remainder = addr % 4;
> +	u16 write_addr, remainder = addr % 4;
>
> -	wrtie_addr = REG_DBI_WDATA + remainder;
> -	rtl_write_byte(rtlpriv, wrtie_addr, data);
> +	write_addr = REG_DBI_WDATA + remainder;
> +	rtl_write_byte(rtlpriv, write_addr, data);
>
> -	wrtie_addr = (addr & 0xfffc) | (BIT(0) << (remainder + 12));
> -	rtl_write_word(rtlpriv, REG_DBI_ADDR, wrtie_addr);
> +	write_addr = (addr & 0xfffc) | (BIT(0) << (remainder + 12));
> +	rtl_write_word(rtlpriv, REG_DBI_ADDR, write_addr);
>
>  	rtl_write_byte(rtlpriv, REG_DBI_FLAG, 0x1);
>
>

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

* Re: [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/
  2017-02-17 16:14   ` Larry Finger
@ 2017-02-17 16:19     ` Geert Uytterhoeven
  2017-02-17 16:42       ` Larry Finger
  0 siblings, 1 reply; 13+ messages in thread
From: Geert Uytterhoeven @ 2017-02-17 16:19 UTC (permalink / raw)
  To: Larry Finger
  Cc: Geert Uytterhoeven, Jiri Kosina, linux-kernel, Chaoming Li, netdev

Hi Larry,

On Fri, Feb 17, 2017 at 5:14 PM, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> On 02/17/2017 09:36 AM, Geert Uytterhoeven wrote:
>> As per symmetry with _rtl8821ae_dbi_read(), "wrtie" is not a funky
>> register acronym, but a simple misspelling of "write".
>>
>> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>> Cc: Larry Finger <Larry.Finger@lwfinger.net>
>> Cc: Chaoming Li <chaoming_li@realsil.com.cn>
>> Cc: netdev@vger.kernel.org
>
> I'm not sure that it is possible to have a typo in a variable name. That
> seems to be within an author's prerogative. Nonetheless, the patch is OK

;-)

> other than it was sent to the wrong destination. Patches for this driver

MAINTAINERS has your name for drivers/net/wireless/realtek/rtlwifi/.
Perhaps that line should be dropped?

> should go through linux-wireless@vger.kernel.org. Kalle Valo is the wireless
> maintainer, but it is not necessary to send to him directly as he usually
> picks up the patches from Patchwork.

I guess Jiri (trivial) will pick it up...

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/
  2017-02-17 16:19     ` Geert Uytterhoeven
@ 2017-02-17 16:42       ` Larry Finger
  0 siblings, 0 replies; 13+ messages in thread
From: Larry Finger @ 2017-02-17 16:42 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Geert Uytterhoeven, Jiri Kosina, linux-kernel, Chaoming Li, netdev

On 02/17/2017 10:19 AM, Geert Uytterhoeven wrote:
> Hi Larry,
>
> On Fri, Feb 17, 2017 at 5:14 PM, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>> On 02/17/2017 09:36 AM, Geert Uytterhoeven wrote:
>>> As per symmetry with _rtl8821ae_dbi_read(), "wrtie" is not a funky
>>> register acronym, but a simple misspelling of "write".
>>>
>>> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>>> Cc: Larry Finger <Larry.Finger@lwfinger.net>
>>> Cc: Chaoming Li <chaoming_li@realsil.com.cn>
>>> Cc: netdev@vger.kernel.org
>>
>> I'm not sure that it is possible to have a typo in a variable name. That
>> seems to be within an author's prerogative. Nonetheless, the patch is OK
>
> ;-)
>
>> other than it was sent to the wrong destination. Patches for this driver
>
> MAINTAINERS has your name for drivers/net/wireless/realtek/rtlwifi/.
> Perhaps that line should be dropped?

The usual hierarchy is through me to Kalle, then to DaveM, and finally to mainline.

>> should go through linux-wireless@vger.kernel.org. Kalle Valo is the wireless
>> maintainer, but it is not necessary to send to him directly as he usually
>> picks up the patches from Patchwork.
>
> I guess Jiri (trivial) will pick it up...

The only potential problem would be conflicts arising from changes merging from 
two different directions. It applies to Kalle's wireless-drivers-next branch, 
and I will try to keep it in mind as additional patches are supplied to rtl8821ae.

Larry

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

* Re: [PATCH trivial 4/4] PM / Documentation: Spelling s/wrtie/write/
  2017-02-17 15:36 ` [PATCH trivial 4/4] PM / Documentation: Spelling s/wrtie/write/ Geert Uytterhoeven
@ 2017-02-18  1:19   ` Rafael J. Wysocki
  0 siblings, 0 replies; 13+ messages in thread
From: Rafael J. Wysocki @ 2017-02-18  1:19 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Jiri Kosina, linux-kernel, linux-pm

On Friday, February 17, 2017 04:36:39 PM Geert Uytterhoeven wrote:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
> Cc: linux-pm@vger.kernel.org
> ---
>  Documentation/power/states.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/power/states.txt b/Documentation/power/states.txt
> index 008ecb588317bc1d..bc4548245a243134 100644
> --- a/Documentation/power/states.txt
> +++ b/Documentation/power/states.txt
> @@ -25,7 +25,7 @@ to be used subsequently to change to the one represented by that string.
>  Consequently, there are two ways to cause the system to go into the
>  Suspend-To-Idle sleep state.  The first one is to write "freeze" directly to
>  /sys/power/state.  The second one is to write "s2idle" to /sys/power/mem_sleep
> -and then to wrtie "mem" to /sys/power/state.  Similarly, there are two ways
> +and then to write "mem" to /sys/power/state.  Similarly, there are two ways
>  to cause the system to go into the Power-On Suspend sleep state (the strings to
>  write to the control files in that case are "standby" or "shallow" and "mem",
>  respectively) if that state is supported by the platform.  In turn, there is
> 

Applied.

Thanks,
Rafael

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

* Re: [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/
  2017-02-17 15:36 ` [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/ Geert Uytterhoeven
@ 2017-02-18  9:17     ` Christian König
  0 siblings, 0 replies; 13+ messages in thread
From: Christian König @ 2017-02-18  9:17 UTC (permalink / raw)
  To: Geert Uytterhoeven, Jiri Kosina; +Cc: linux-kernel, Alex Deucher, dri-devel

Am 17.02.2017 um 16:36 schrieb Geert Uytterhoeven:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian König <christian.koenig@amd.com>
> Cc: dri-devel@lists.freedesktop.orgamd-gfx@lists.freedesktop.org

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/cikd.h | 2 +-
>   drivers/gpu/drm/radeon/cikd.h     | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/cikd.h b/drivers/gpu/drm/amd/amdgpu/cikd.h
> index 6cbd913fd12ed6f9..6a9e38a3d2a0bbee 100644
> --- a/drivers/gpu/drm/amd/amdgpu/cikd.h
> +++ b/drivers/gpu/drm/amd/amdgpu/cikd.h
> @@ -502,7 +502,7 @@
>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>   #define	SDMA_OPCODE_WRITE				  2
>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>   #define	SDMA_OPCODE_INDIRECT_BUFFER			  4
>   #define	SDMA_OPCODE_FENCE				  5
>   #define	SDMA_OPCODE_TRAP				  6
> diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h
> index 48db93577c1dacad..e21015475ed52f31 100644
> --- a/drivers/gpu/drm/radeon/cikd.h
> +++ b/drivers/gpu/drm/radeon/cikd.h
> @@ -2016,7 +2016,7 @@
>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>   #define	SDMA_OPCODE_WRITE				  2
>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>   #define	SDMA_OPCODE_INDIRECT_BUFFER			  4
>   #define	SDMA_OPCODE_FENCE				  5
>   #define	SDMA_OPCODE_TRAP				  6

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

* Re: [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/
@ 2017-02-18  9:17     ` Christian König
  0 siblings, 0 replies; 13+ messages in thread
From: Christian König @ 2017-02-18  9:17 UTC (permalink / raw)
  To: Geert Uytterhoeven, Jiri Kosina; +Cc: Alex Deucher, linux-kernel, dri-devel

Am 17.02.2017 um 16:36 schrieb Geert Uytterhoeven:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian König <christian.koenig@amd.com>
> Cc: dri-devel@lists.freedesktop.orgamd-gfx@lists.freedesktop.org

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/cikd.h | 2 +-
>   drivers/gpu/drm/radeon/cikd.h     | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/cikd.h b/drivers/gpu/drm/amd/amdgpu/cikd.h
> index 6cbd913fd12ed6f9..6a9e38a3d2a0bbee 100644
> --- a/drivers/gpu/drm/amd/amdgpu/cikd.h
> +++ b/drivers/gpu/drm/amd/amdgpu/cikd.h
> @@ -502,7 +502,7 @@
>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>   #define	SDMA_OPCODE_WRITE				  2
>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>   #define	SDMA_OPCODE_INDIRECT_BUFFER			  4
>   #define	SDMA_OPCODE_FENCE				  5
>   #define	SDMA_OPCODE_TRAP				  6
> diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h
> index 48db93577c1dacad..e21015475ed52f31 100644
> --- a/drivers/gpu/drm/radeon/cikd.h
> +++ b/drivers/gpu/drm/radeon/cikd.h
> @@ -2016,7 +2016,7 @@
>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>   #define	SDMA_OPCODE_WRITE				  2
>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>   #define	SDMA_OPCODE_INDIRECT_BUFFER			  4
>   #define	SDMA_OPCODE_FENCE				  5
>   #define	SDMA_OPCODE_TRAP				  6


_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/
  2017-02-17 15:36 [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2017-02-17 15:36 ` [PATCH trivial 4/4] PM / Documentation: Spelling s/wrtie/write/ Geert Uytterhoeven
@ 2017-02-18  9:24 ` Bruno Prémont
  3 siblings, 0 replies; 13+ messages in thread
From: Bruno Prémont @ 2017-02-18  9:24 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Jiri Kosina, linux-kernel, linux-input

Hi Geert, Jiri,

Fine with me,
Acked-by: Bruno Prémont <bonbons@linux-vserver.org>

On Fri, 17 Feb 2017 16:36:36 Geert Uytterhoeven
<geert+renesas@glider.be> wrote:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Bruno Prémont <bonbons@linux-vserver.org>
> Cc: linux-input@vger.kernel.org
> ---
>  drivers/hid/hid-picolcd_debugfs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/hid/hid-picolcd_debugfs.c b/drivers/hid/hid-picolcd_debugfs.c
> index 3c13af6844108f97..3e0feb4bb5380978 100644
> --- a/drivers/hid/hid-picolcd_debugfs.c
> +++ b/drivers/hid/hid-picolcd_debugfs.c
> @@ -736,7 +736,7 @@ void picolcd_debug_raw_event(struct picolcd_data *data,
>  		}
>  		break;
>  	case REPORT_MEMORY:
> -		/* Data buffer in response to REPORT_READ_MEMORY or REPORT_WRTIE_MEMORY */
> +		/* Data buffer in response to REPORT_READ_MEMORY or REPORT_WRITE_MEMORY */
>  		snprintf(buff, BUFF_SZ, "report %s (%d, size=%d)\n",
>  			"REPORT_MEMORY", report->id, size-1);
>  		hid_debug_event(hdev, buff);

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

* Re: [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/
  2017-02-18  9:17     ` Christian König
@ 2017-02-23 14:36       ` Alex Deucher
  -1 siblings, 0 replies; 13+ messages in thread
From: Alex Deucher @ 2017-02-23 14:36 UTC (permalink / raw)
  To: Christian König
  Cc: Geert Uytterhoeven, Jiri Kosina, Alex Deucher, LKML,
	Maling list - DRI developers

On Sat, Feb 18, 2017 at 4:17 AM, Christian König
<christian.koenig@amd.com> wrote:
> Am 17.02.2017 um 16:36 schrieb Geert Uytterhoeven:
>>
>> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>> Cc: Alex Deucher <alexander.deucher@amd.com>
>> Cc: Christian König <christian.koenig@amd.com>
>> Cc: dri-devel@lists.freedesktop.orgamd-gfx@lists.freedesktop.org
>
>
> Reviewed-by: Christian König <christian.koenig@amd.com>

Applied.  thanks!

Alex

>
>
>> ---
>>   drivers/gpu/drm/amd/amdgpu/cikd.h | 2 +-
>>   drivers/gpu/drm/radeon/cikd.h     | 2 +-
>>   2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/cikd.h
>> b/drivers/gpu/drm/amd/amdgpu/cikd.h
>> index 6cbd913fd12ed6f9..6a9e38a3d2a0bbee 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/cikd.h
>> +++ b/drivers/gpu/drm/amd/amdgpu/cikd.h
>> @@ -502,7 +502,7 @@
>>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>>   #define       SDMA_OPCODE_WRITE                                 2
>>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
>> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
>> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>>   #define       SDMA_OPCODE_INDIRECT_BUFFER                       4
>>   #define       SDMA_OPCODE_FENCE                                 5
>>   #define       SDMA_OPCODE_TRAP                                  6
>> diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h
>> index 48db93577c1dacad..e21015475ed52f31 100644
>> --- a/drivers/gpu/drm/radeon/cikd.h
>> +++ b/drivers/gpu/drm/radeon/cikd.h
>> @@ -2016,7 +2016,7 @@
>>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>>   #define       SDMA_OPCODE_WRITE                                 2
>>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
>> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
>> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>>   #define       SDMA_OPCODE_INDIRECT_BUFFER                       4
>>   #define       SDMA_OPCODE_FENCE                                 5
>>   #define       SDMA_OPCODE_TRAP                                  6
>
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/
@ 2017-02-23 14:36       ` Alex Deucher
  0 siblings, 0 replies; 13+ messages in thread
From: Alex Deucher @ 2017-02-23 14:36 UTC (permalink / raw)
  To: Christian König
  Cc: Alex Deucher, Maling list - DRI developers, Jiri Kosina, LKML,
	Geert Uytterhoeven

On Sat, Feb 18, 2017 at 4:17 AM, Christian König
<christian.koenig@amd.com> wrote:
> Am 17.02.2017 um 16:36 schrieb Geert Uytterhoeven:
>>
>> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>> Cc: Alex Deucher <alexander.deucher@amd.com>
>> Cc: Christian König <christian.koenig@amd.com>
>> Cc: dri-devel@lists.freedesktop.orgamd-gfx@lists.freedesktop.org
>
>
> Reviewed-by: Christian König <christian.koenig@amd.com>

Applied.  thanks!

Alex

>
>
>> ---
>>   drivers/gpu/drm/amd/amdgpu/cikd.h | 2 +-
>>   drivers/gpu/drm/radeon/cikd.h     | 2 +-
>>   2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/cikd.h
>> b/drivers/gpu/drm/amd/amdgpu/cikd.h
>> index 6cbd913fd12ed6f9..6a9e38a3d2a0bbee 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/cikd.h
>> +++ b/drivers/gpu/drm/amd/amdgpu/cikd.h
>> @@ -502,7 +502,7 @@
>>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>>   #define       SDMA_OPCODE_WRITE                                 2
>>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
>> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
>> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>>   #define       SDMA_OPCODE_INDIRECT_BUFFER                       4
>>   #define       SDMA_OPCODE_FENCE                                 5
>>   #define       SDMA_OPCODE_TRAP                                  6
>> diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h
>> index 48db93577c1dacad..e21015475ed52f31 100644
>> --- a/drivers/gpu/drm/radeon/cikd.h
>> +++ b/drivers/gpu/drm/radeon/cikd.h
>> @@ -2016,7 +2016,7 @@
>>   #       define SDMA_COPY_SUB_OPCODE_T2T_SUB_WINDOW        6
>>   #define       SDMA_OPCODE_WRITE                                 2
>>   #       define SDMA_WRITE_SUB_OPCODE_LINEAR               0
>> -#       define SDMA_WRTIE_SUB_OPCODE_TILED                1
>> +#       define SDMA_WRITE_SUB_OPCODE_TILED                1
>>   #define       SDMA_OPCODE_INDIRECT_BUFFER                       4
>>   #define       SDMA_OPCODE_FENCE                                 5
>>   #define       SDMA_OPCODE_TRAP                                  6
>
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2017-02-23 14:44 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-17 15:36 [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Geert Uytterhoeven
2017-02-17 15:36 ` [PATCH trivial 2/4] rtlwifi: rtl8821ae: Spelling s/wrtie_addr/write_addr/ Geert Uytterhoeven
2017-02-17 16:14   ` Larry Finger
2017-02-17 16:19     ` Geert Uytterhoeven
2017-02-17 16:42       ` Larry Finger
2017-02-17 15:36 ` [PATCH trivial 3/4] drm/amd: Spelling s/SDMA_WRTIE_SUB_OPCODE_TILED/SDMA_WRITE_SUB_OPCODE_TILED/ Geert Uytterhoeven
2017-02-18  9:17   ` Christian König
2017-02-18  9:17     ` Christian König
2017-02-23 14:36     ` Alex Deucher
2017-02-23 14:36       ` Alex Deucher
2017-02-17 15:36 ` [PATCH trivial 4/4] PM / Documentation: Spelling s/wrtie/write/ Geert Uytterhoeven
2017-02-18  1:19   ` Rafael J. Wysocki
2017-02-18  9:24 ` [PATCH trivial 1/4] HID: picoLCD: Spelling s/REPORT_WRTIE_MEMORY/REPORT_WRITE_MEMORY/ Bruno Prémont

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.