Linux Documentation
 help / color / mirror / Atom feed
* [PATCH] docs: parport: Fix FIFO Kconfig symbol
@ 2026-08-22  8:22 Karl Mehltretter
  2026-08-22 17:03 ` Randy Dunlap
  2026-08-31 21:31 ` Jonathan Corbet
  0 siblings, 2 replies; 3+ messages in thread
From: Karl Mehltretter @ 2026-08-22  8:22 UTC (permalink / raw)
  To: Sudip Mukherjee
  Cc: Karl Mehltretter, Jonathan Corbet, Shuah Khan, Randy Dunlap,
	linux-parport, linux-doc, linux-kernel

The ReST conversion shortened CONFIG_PARPORT_PC_FIFO to the nonexistent
CONFIG_FIFO symbol. Restore the full name.

Fixes: e095f0711b49 ("Documentation/parport.txt: convert to ReST markup")
Assisted-by: Codex:gpt-5.6-sol
Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>
---
 Documentation/admin-guide/parport.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/admin-guide/parport.rst b/Documentation/admin-guide/parport.rst
index ad3f9b8a11e19..4aef45262bd49 100644
--- a/Documentation/admin-guide/parport.rst
+++ b/Documentation/admin-guide/parport.rst
@@ -273,7 +273,7 @@ If that works fine, try with ``io=0x378 irq=7`` (adjust for your
 hardware), to make it use interrupt-driven in-software protocol.
 
 If **that** works fine, then one of the hardware modes isn't working
-right.  Enable ``CONFIG_FIFO`` (no, it isn't a module option,
+right.  Enable ``CONFIG_PARPORT_PC_FIFO`` (no, it isn't a module option,
 and yes, it should be), set the port to ECP mode in the BIOS and note
 the DMA channel, and try with::
 
-- 
2.53.0


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

* Re: [PATCH] docs: parport: Fix FIFO Kconfig symbol
  2026-08-22  8:22 [PATCH] docs: parport: Fix FIFO Kconfig symbol Karl Mehltretter
@ 2026-08-22 17:03 ` Randy Dunlap
  2026-08-31 21:31 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2026-08-22 17:03 UTC (permalink / raw)
  To: Karl Mehltretter, Sudip Mukherjee
  Cc: Jonathan Corbet, Shuah Khan, linux-parport, linux-doc,
	linux-kernel



On 8/22/26 1:22 AM, Karl Mehltretter wrote:
> The ReST conversion shortened CONFIG_PARPORT_PC_FIFO to the nonexistent
> CONFIG_FIFO symbol. Restore the full name.
> 
> Fixes: e095f0711b49 ("Documentation/parport.txt: convert to ReST markup")
> Assisted-by: Codex:gpt-5.6-sol
> Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.

> ---
>  Documentation/admin-guide/parport.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/admin-guide/parport.rst b/Documentation/admin-guide/parport.rst
> index ad3f9b8a11e19..4aef45262bd49 100644
> --- a/Documentation/admin-guide/parport.rst
> +++ b/Documentation/admin-guide/parport.rst
> @@ -273,7 +273,7 @@ If that works fine, try with ``io=0x378 irq=7`` (adjust for your
>  hardware), to make it use interrupt-driven in-software protocol.
>  
>  If **that** works fine, then one of the hardware modes isn't working
> -right.  Enable ``CONFIG_FIFO`` (no, it isn't a module option,
> +right.  Enable ``CONFIG_PARPORT_PC_FIFO`` (no, it isn't a module option,
>  and yes, it should be), set the port to ECP mode in the BIOS and note
>  the DMA channel, and try with::
>  

-- 
~Randy

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

* Re: [PATCH] docs: parport: Fix FIFO Kconfig symbol
  2026-08-22  8:22 [PATCH] docs: parport: Fix FIFO Kconfig symbol Karl Mehltretter
  2026-08-22 17:03 ` Randy Dunlap
@ 2026-08-31 21:31 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2026-08-31 21:31 UTC (permalink / raw)
  To: Karl Mehltretter, Sudip Mukherjee
  Cc: Karl Mehltretter, Shuah Khan, Randy Dunlap, linux-parport,
	linux-doc, linux-kernel

Karl Mehltretter <kmehltretter@gmail.com> writes:

> The ReST conversion shortened CONFIG_PARPORT_PC_FIFO to the nonexistent
> CONFIG_FIFO symbol. Restore the full name.
>
> Fixes: e095f0711b49 ("Documentation/parport.txt: convert to ReST markup")
> Assisted-by: Codex:gpt-5.6-sol
> Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>
> ---
>  Documentation/admin-guide/parport.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/admin-guide/parport.rst b/Documentation/admin-guide/parport.rst
> index ad3f9b8a11e19..4aef45262bd49 100644
> --- a/Documentation/admin-guide/parport.rst
> +++ b/Documentation/admin-guide/parport.rst
> @@ -273,7 +273,7 @@ If that works fine, try with ``io=0x378 irq=7`` (adjust for your
>  hardware), to make it use interrupt-driven in-software protocol.
>  
>  If **that** works fine, then one of the hardware modes isn't working
> -right.  Enable ``CONFIG_FIFO`` (no, it isn't a module option,
> +right.  Enable ``CONFIG_PARPORT_PC_FIFO`` (no, it isn't a module option,
>  and yes, it should be), set the port to ECP mode in the BIOS and note

Applied, thanks.

jon

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

end of thread, other threads:[~2026-08-31 21:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-22  8:22 [PATCH] docs: parport: Fix FIFO Kconfig symbol Karl Mehltretter
2026-08-22 17:03 ` Randy Dunlap
2026-08-31 21:31 ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox