diff options
Diffstat (limited to 'Documentation/driver-model')
-rw-r--r-- | Documentation/driver-model/class.txt | 2 | ||||
-rw-r--r-- | Documentation/driver-model/driver.txt | 2 | ||||
-rw-r--r-- | Documentation/driver-model/overview.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/driver-model/class.txt b/Documentation/driver-model/class.txt index 2d1d893a5e5d..548505f14aa4 100644 --- a/Documentation/driver-model/class.txt +++ b/Documentation/driver-model/class.txt | |||
@@ -12,7 +12,7 @@ device. The following device classes have been identified: | |||
12 | 12 | ||
13 | Each device class defines a set of semantics and a programming interface | 13 | Each device class defines a set of semantics and a programming interface |
14 | that devices of that class adhere to. Device drivers are the | 14 | that devices of that class adhere to. Device drivers are the |
15 | implemention of that programming interface for a particular device on | 15 | implementation of that programming interface for a particular device on |
16 | a particular bus. | 16 | a particular bus. |
17 | 17 | ||
18 | Device classes are agnostic with respect to what bus a device resides | 18 | Device classes are agnostic with respect to what bus a device resides |
diff --git a/Documentation/driver-model/driver.txt b/Documentation/driver-model/driver.txt index 59806c9761f7..82132169d47a 100644 --- a/Documentation/driver-model/driver.txt +++ b/Documentation/driver-model/driver.txt | |||
@@ -178,7 +178,7 @@ the driver to that device. | |||
178 | 178 | ||
179 | A driver's probe() may return a negative errno value to indicate that | 179 | A driver's probe() may return a negative errno value to indicate that |
180 | the driver did not bind to this device, in which case it should have | 180 | the driver did not bind to this device, in which case it should have |
181 | released all reasources it allocated. | 181 | released all resources it allocated. |
182 | 182 | ||
183 | int (*remove) (struct device * dev); | 183 | int (*remove) (struct device * dev); |
184 | 184 | ||
diff --git a/Documentation/driver-model/overview.txt b/Documentation/driver-model/overview.txt index 2050c9ffc629..07236ed968da 100644 --- a/Documentation/driver-model/overview.txt +++ b/Documentation/driver-model/overview.txt | |||
@@ -57,7 +57,7 @@ the two. | |||
57 | 57 | ||
58 | The PCI bus layer freely accesses the fields of struct device. It knows about | 58 | The PCI bus layer freely accesses the fields of struct device. It knows about |
59 | the structure of struct pci_dev, and it should know the structure of struct | 59 | the structure of struct pci_dev, and it should know the structure of struct |
60 | device. Individual PCI device drivers that have been converted the the current | 60 | device. Individual PCI device drivers that have been converted to the current |
61 | driver model generally do not and should not touch the fields of struct device, | 61 | driver model generally do not and should not touch the fields of struct device, |
62 | unless there is a strong compelling reason to do so. | 62 | unless there is a strong compelling reason to do so. |
63 | 63 | ||