All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: Octeon: Fix a typo in #define OCTOEN_SERIAL_LEN
@ 2019-08-18 15:51 ` Christophe JAILLET
  0 siblings, 0 replies; 4+ messages in thread
From: Christophe JAILLET @ 2019-08-18 15:51 UTC (permalink / raw)
  To: ralf, paul.burton, jhogan
  Cc: linux-mips, linux-kernel, kernel-janitors, Christophe JAILLET

It should be OCTEON_SERIAL_LEN.
Update the #define and use it accordingly

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 arch/mips/include/asm/octeon/octeon.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/include/asm/octeon/octeon.h b/arch/mips/include/asm/octeon/octeon.h
index 60481502826a..a2e2876357ce 100644
--- a/arch/mips/include/asm/octeon/octeon.h
+++ b/arch/mips/include/asm/octeon/octeon.h
@@ -51,7 +51,7 @@ extern void octeon_setup_delays(void);
 extern void octeon_io_clk_delay(unsigned long);
 
 #define OCTEON_ARGV_MAX_ARGS	64
-#define OCTOEN_SERIAL_LEN	20
+#define OCTEON_SERIAL_LEN	20
 
 struct octeon_boot_descriptor {
 #ifdef __BIG_ENDIAN_BITFIELD
@@ -102,7 +102,7 @@ struct octeon_boot_descriptor {
 	uint16_t chip_type;
 	uint8_t chip_rev_major;
 	uint8_t chip_rev_minor;
-	char board_serial_number[OCTOEN_SERIAL_LEN];
+	char board_serial_number[OCTEON_SERIAL_LEN];
 	uint8_t mac_addr_base[6];
 	uint8_t mac_addr_count;
 	uint64_t cvmx_desc_vaddr;
-- 
2.20.1


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

* [PATCH] MIPS: Octeon: Fix a typo in #define OCTOEN_SERIAL_LEN
@ 2019-08-18 15:51 ` Christophe JAILLET
  0 siblings, 0 replies; 4+ messages in thread
From: Christophe JAILLET @ 2019-08-18 15:51 UTC (permalink / raw)
  To: ralf, paul.burton, jhogan
  Cc: linux-mips, linux-kernel, kernel-janitors, Christophe JAILLET

It should be OCTEON_SERIAL_LEN.
Update the #define and use it accordingly

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 arch/mips/include/asm/octeon/octeon.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/include/asm/octeon/octeon.h b/arch/mips/include/asm/octeon/octeon.h
index 60481502826a..a2e2876357ce 100644
--- a/arch/mips/include/asm/octeon/octeon.h
+++ b/arch/mips/include/asm/octeon/octeon.h
@@ -51,7 +51,7 @@ extern void octeon_setup_delays(void);
 extern void octeon_io_clk_delay(unsigned long);
 
 #define OCTEON_ARGV_MAX_ARGS	64
-#define OCTOEN_SERIAL_LEN	20
+#define OCTEON_SERIAL_LEN	20
 
 struct octeon_boot_descriptor {
 #ifdef __BIG_ENDIAN_BITFIELD
@@ -102,7 +102,7 @@ struct octeon_boot_descriptor {
 	uint16_t chip_type;
 	uint8_t chip_rev_major;
 	uint8_t chip_rev_minor;
-	char board_serial_number[OCTOEN_SERIAL_LEN];
+	char board_serial_number[OCTEON_SERIAL_LEN];
 	uint8_t mac_addr_base[6];
 	uint8_t mac_addr_count;
 	uint64_t cvmx_desc_vaddr;
-- 
2.20.1

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

* Re: [PATCH] MIPS: Octeon: Fix a typo in #define OCTOEN_SERIAL_LEN
  2019-08-18 15:51 ` Christophe JAILLET
@ 2019-08-19 21:17   ` Paul Burton
  -1 siblings, 0 replies; 4+ messages in thread
From: Paul Burton @ 2019-08-19 21:17 UTC (permalink / raw)
  To: Christophe JAILLET
  Cc: ralf, Paul Burton, jhogan, linux-mips, linux-kernel,
	kernel-janitors, Christophe JAILLET, linux-mips

Hello,

Christophe JAILLET wrote:
> It should be OCTEON_SERIAL_LEN.
> Update the #define and use it accordingly

Applied to mips-next.

> commit 3becd97e032a
> https://git.kernel.org/mips/c/3becd97e032a
> 
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> Signed-off-by: Paul Burton <paul.burton@mips.com>

Thanks,
    Paul

[ This message was auto-generated; if you believe anything is incorrect
  then please email paul.burton@mips.com to report it. ]

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

* Re: [PATCH] MIPS: Octeon: Fix a typo in #define OCTOEN_SERIAL_LEN
@ 2019-08-19 21:17   ` Paul Burton
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Burton @ 2019-08-19 21:17 UTC (permalink / raw)
  To: Christophe JAILLET
  Cc: ralf, Paul Burton, jhogan, linux-mips, linux-kernel, kernel-janitors

Hello,

Christophe JAILLET wrote:
> It should be OCTEON_SERIAL_LEN.
> Update the #define and use it accordingly

Applied to mips-next.

> commit 3becd97e032a
> https://git.kernel.org/mips/c/3becd97e032a
> 
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> Signed-off-by: Paul Burton <paul.burton@mips.com>

Thanks,
    Paul

[ This message was auto-generated; if you believe anything is incorrect
  then please email paul.burton@mips.com to report it. ]

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

end of thread, other threads:[~2019-08-19 21:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-18 15:51 [PATCH] MIPS: Octeon: Fix a typo in #define OCTOEN_SERIAL_LEN Christophe JAILLET
2019-08-18 15:51 ` Christophe JAILLET
2019-08-19 21:17 ` Paul Burton
2019-08-19 21:17   ` Paul Burton

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.