From c73262b816dfa20fee25cb9c355180e7a62bd610 Mon Sep 17 00:00:00 2001 From: Mark Linimon Date: Sun, 29 Dec 2024 10:56:05 +0100 Subject: [PATCH] Arch Handbook - driver basics: Minor tweaks Reviewed by: emaste@, carlavilla@, Pau Amma Pull Request: https://github.com/freebsd/freebsd-doc/pull/417 --- .../content/en/books/arch-handbook/driverbasics/_index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc b/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc index 542bcdbc7ae4..d4124981a3c5 100644 --- a/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc +++ b/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc @@ -343,4 +343,4 @@ For this reason, no serious applications rely on block devices, and in fact, alm Drivers for network devices do not use device nodes in order to be accessed. Their selection is based on other decisions made inside the kernel and instead of calling open(), use of a network device is generally introduced by using the system call socket(2). -For more information see ifnet(9), the source of the loopback device, and Bill Paul's network drivers. +For more information see ifnet(9), the source of the loopback device.