Commit 488f5909 authored by Maximilian Attems's avatar Maximilian Attems Committed by Linus Torvalds

[PATCH] ifdef typos: arch_sh_boards_renesas_hs7751rvoip_io.c

CONFIG_HS7751RVOIP_CIDEC is mistyped.
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Acked-by: default avatarRandy Dunlap <rddunlap@osdl.org>
Signed-off-by: default avatarMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a2ea599b
...@@ -166,7 +166,7 @@ void hs7751rvoip_outb(unsigned char value, unsigned long port) ...@@ -166,7 +166,7 @@ void hs7751rvoip_outb(unsigned char value, unsigned long port)
if (PXSEG(port)) if (PXSEG(port))
*(volatile unsigned char *)port = value; *(volatile unsigned char *)port = value;
#if defined(CONFIG_HS7751RVOIP_CIDEC) #if defined(CONFIG_HS7751RVOIP_CODEC)
else if (codec_port(port)) else if (codec_port(port))
*(volatile unsigned cjar *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = value; *(volatile unsigned cjar *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = value;
#endif #endif
...@@ -180,7 +180,7 @@ void hs7751rvoip_outb_p(unsigned char value, unsigned long port) ...@@ -180,7 +180,7 @@ void hs7751rvoip_outb_p(unsigned char value, unsigned long port)
{ {
if (PXSEG(port)) if (PXSEG(port))
*(volatile unsigned char *)port = value; *(volatile unsigned char *)port = value;
#if defined(CONFIG_HS7751RVOIP_CIDEC) #if defined(CONFIG_HS7751RVOIP_CODEC)
else if (codec_port(port)) else if (codec_port(port))
*(volatile unsigned cjar *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = value; *(volatile unsigned cjar *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = value;
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment