blob: 3fa0c4b4541e065760a3c119e88d314ba3b6ee91 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
4
5<book id="LinuxKernelAPI">
6 <bookinfo>
7 <title>The Linux Kernel API</title>
8
9 <legalnotice>
10 <para>
11 This documentation is free software; you can redistribute
12 it and/or modify it under the terms of the GNU General Public
13 License as published by the Free Software Foundation; either
14 version 2 of the License, or (at your option) any later
15 version.
16 </para>
17
18 <para>
19 This program is distributed in the hope that it will be
20 useful, but WITHOUT ANY WARRANTY; without even the implied
21 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 See the GNU General Public License for more details.
23 </para>
24
25 <para>
26 You should have received a copy of the GNU General Public
27 License along with this program; if not, write to the Free
28 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 MA 02111-1307 USA
30 </para>
31
32 <para>
33 For more details see the file COPYING in the source
34 distribution of Linux.
35 </para>
36 </legalnotice>
37 </bookinfo>
38
39<toc></toc>
40
41 <chapter id="Basics">
42 <title>Driver Basics</title>
43 <sect1><title>Driver Entry and Exit points</title>
44!Iinclude/linux/init.h
45 </sect1>
46
47 <sect1><title>Atomic and pointer manipulation</title>
48!Iinclude/asm-i386/atomic.h
49!Iinclude/asm-i386/unaligned.h
50 </sect1>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 <sect1><title>Delaying, scheduling, and timer routines</title>
Pavel Pisa4dc3b162005-05-01 08:59:25 -070053!Iinclude/linux/sched.h
54!Ekernel/sched.c
55!Ekernel/timer.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 </sect1>
Thomas Gleixnerdf784882006-01-09 20:52:33 -080057 <sect1><title>High-resolution timers</title>
58!Iinclude/linux/ktime.h
59!Iinclude/linux/hrtimer.h
60!Ekernel/hrtimer.c
61 </sect1>
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -070062 <sect1><title>Workqueues and Kevents</title>
63!Ekernel/workqueue.c
64 </sect1>
Pavel Pisa4dc3b162005-05-01 08:59:25 -070065 <sect1><title>Internal Functions</title>
66!Ikernel/exit.c
67!Ikernel/signal.c
Randy Dunlap9e37bd32006-06-25 05:49:19 -070068!Iinclude/linux/kthread.h
69!Ekernel/kthread.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -070070 </sect1>
71
72 <sect1><title>Kernel objects manipulation</title>
73<!--
74X!Iinclude/linux/kobject.h
75-->
76!Elib/kobject.c
77 </sect1>
78
79 <sect1><title>Kernel utility functions</title>
80!Iinclude/linux/kernel.h
Martin Waitzddad86c2005-11-13 16:08:14 -080081!Ekernel/printk.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -070082!Ekernel/panic.c
83!Ekernel/sys.c
84!Ekernel/rcupdate.c
85 </sect1>
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 </chapter>
88
89 <chapter id="adt">
90 <title>Data Types</title>
91 <sect1><title>Doubly Linked Lists</title>
92!Iinclude/linux/list.h
93 </sect1>
94 </chapter>
95
96 <chapter id="libc">
97 <title>Basic C Library Functions</title>
98
99 <para>
100 When writing drivers, you cannot in general use routines which are
101 from the C Library. Some of the functions have been found generally
102 useful and they are listed below. The behaviour of these functions
103 may vary slightly from those defined by ANSI, and these deviations
104 are noted in the text.
105 </para>
106
107 <sect1><title>String Conversions</title>
108!Ilib/vsprintf.c
109!Elib/vsprintf.c
110 </sect1>
111 <sect1><title>String Manipulation</title>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700112<!-- All functions are exported at now
113X!Ilib/string.c
114 -->
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115!Elib/string.c
116 </sect1>
117 <sect1><title>Bit Operations</title>
118!Iinclude/asm-i386/bitops.h
119 </sect1>
Randy Dunlap28e83ba2006-06-25 05:48:58 -0700120 </chapter>
121
122 <chapter id="kernel-lib">
123 <title>Basic Kernel Library Functions</title>
124
125 <para>
126 The Linux kernel provides more basic utility functions.
127 </para>
128
Randy Dunlap6e1907ff2006-06-25 05:48:57 -0700129 <sect1><title>Bitmap Operations</title>
130!Elib/bitmap.c
131!Ilib/bitmap.c
132 </sect1>
Randy Dunlap28e83ba2006-06-25 05:48:58 -0700133
134 <sect1><title>Command-line Parsing</title>
135!Elib/cmdline.c
136 </sect1>
Randy Dunlap2f721002006-06-25 05:48:59 -0700137
138 <sect1><title>CRC Functions</title>
139!Elib/crc16.c
140!Elib/crc32.c
141!Elib/crc-ccitt.c
142 </sect1>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 </chapter>
144
145 <chapter id="mm">
146 <title>Memory Management in Linux</title>
147 <sect1><title>The Slab Cache</title>
Paul Drynoff800590f2006-06-23 02:03:48 -0700148!Iinclude/linux/slab.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149!Emm/slab.c
150 </sect1>
151 <sect1><title>User Space Memory Access</title>
152!Iinclude/asm-i386/uaccess.h
Randy Dunlap8f2709b2005-11-07 01:01:05 -0800153!Earch/i386/lib/usercopy.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 </sect1>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700155 <sect1><title>More Memory Management Functions</title>
156!Iinclude/linux/rmap.h
157!Emm/readahead.c
158!Emm/filemap.c
159!Emm/memory.c
160!Emm/vmalloc.c
Randy Dunlap88ca3b92006-10-04 02:15:25 -0700161!Imm/page_alloc.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700162!Emm/mempool.c
163!Emm/page-writeback.c
164!Emm/truncate.c
165 </sect1>
166 </chapter>
167
168
169 <chapter id="ipc">
170 <title>Kernel IPC facilities</title>
171
172 <sect1><title>IPC utilities</title>
173!Iipc/util.c
174 </sect1>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 </chapter>
176
177 <chapter id="kfifo">
178 <title>FIFO Buffer</title>
179 <sect1><title>kfifo interface</title>
180!Iinclude/linux/kfifo.h
181!Ekernel/kfifo.c
182 </sect1>
183 </chapter>
184
Randy Dunlap5b217fa2006-09-29 01:59:10 -0700185 <chapter id="relayfs">
186 <title>relay interface support</title>
187
188 <para>
189 Relay interface support
190 is designed to provide an efficient mechanism for tools and
191 facilities to relay large amounts of data from kernel space to
192 user space.
193 </para>
194
195 <sect1><title>relay interface</title>
196!Ekernel/relay.c
197!Ikernel/relay.c
198 </sect1>
199 </chapter>
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 <chapter id="netcore">
202 <title>Linux Networking</title>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700203 <sect1><title>Networking Base Types</title>
204!Iinclude/linux/net.h
205 </sect1>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 <sect1><title>Socket Buffer Functions</title>
207!Iinclude/linux/skbuff.h
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700208!Iinclude/net/sock.h
209!Enet/socket.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210!Enet/core/skbuff.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700211!Enet/core/sock.c
212!Enet/core/datagram.c
213!Enet/core/stream.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 </sect1>
215 <sect1><title>Socket Filter</title>
216!Enet/core/filter.c
217 </sect1>
218 <sect1><title>Generic Network Statistics</title>
219!Iinclude/linux/gen_stats.h
220!Enet/core/gen_stats.c
221!Enet/core/gen_estimator.c
222 </sect1>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700223 <sect1><title>SUN RPC subsystem</title>
224<!-- The !D functionality is not perfect, garbage has to be protected by comments
225!Dnet/sunrpc/sunrpc_syms.c
226-->
227!Enet/sunrpc/xdr.c
228!Enet/sunrpc/svcsock.c
229!Enet/sunrpc/sched.c
230 </sect1>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 </chapter>
232
233 <chapter id="netdev">
234 <title>Network device support</title>
235 <sect1><title>Driver Support</title>
236!Enet/core/dev.c
Stephen Hemmingerc2da8ac2005-11-01 17:05:09 -0800237!Enet/ethernet/eth.c
Randy Dunlap461ddf32005-11-20 21:25:15 -0800238!Iinclude/linux/etherdevice.h
239<!-- FIXME: Removed for now since no structured comments in source
240X!Enet/core/wireless.c
241-->
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 </sect1>
243 <sect1><title>Synchronous PPP</title>
244!Edrivers/net/wan/syncppp.c
245 </sect1>
246 </chapter>
247
248 <chapter id="modload">
249 <title>Module Support</title>
250 <sect1><title>Module Loading</title>
251!Ekernel/kmod.c
252 </sect1>
253 <sect1><title>Inter Module support</title>
254 <para>
255 Refer to the file kernel/module.c for more information.
256 </para>
257<!-- FIXME: Removed for now since no structured comments in source
258X!Ekernel/module.c
259-->
260 </sect1>
261 </chapter>
262
263 <chapter id="hardware">
264 <title>Hardware Interfaces</title>
265 <sect1><title>Interrupt Handling</title>
Randy Dunlap8f2709b2005-11-07 01:01:05 -0800266!Ekernel/irq/manage.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 </sect1>
268
Randy Dunlapeed34d02006-10-03 01:13:50 -0700269 <sect1><title>DMA Channels</title>
270!Ekernel/dma.c
271 </sect1>
272
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700273 <sect1><title>Resources Management</title>
Randy Dunlap2b549602006-07-30 03:03:40 -0700274!Ikernel/resource.c
Randy Dunlape1ca66d2006-10-03 01:13:51 -0700275!Ekernel/resource.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700276 </sect1>
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 <sect1><title>MTRR Handling</title>
279!Earch/i386/kernel/cpu/mtrr/main.c
280 </sect1>
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 <sect1><title>PCI Support Library</title>
283!Edrivers/pci/pci.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700284!Edrivers/pci/pci-driver.c
285!Edrivers/pci/remove.c
286!Edrivers/pci/pci-acpi.c
Randy Dunlapd75763d2006-07-30 03:03:41 -0700287!Edrivers/pci/search.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700288!Edrivers/pci/msi.c
289!Edrivers/pci/bus.c
Randy Dunlapf05aab82005-10-23 11:58:19 -0700290<!-- FIXME: Removed for now since no structured comments in source
291X!Edrivers/pci/hotplug.c
292-->
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700293!Edrivers/pci/probe.c
294!Edrivers/pci/rom.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 </sect1>
296 <sect1><title>PCI Hotplug Support Library</title>
297!Edrivers/pci/hotplug/pci_hotplug_core.c
298 </sect1>
299 <sect1><title>MCA Architecture</title>
300 <sect2><title>MCA Device Functions</title>
301 <para>
302 Refer to the file arch/i386/kernel/mca.c for more information.
303 </para>
304<!-- FIXME: Removed for now since no structured comments in source
305X!Earch/i386/kernel/mca.c
306-->
307 </sect2>
308 <sect2><title>MCA Bus DMA</title>
309!Iinclude/asm-i386/mca_dma.h
310 </sect2>
311 </sect1>
312 </chapter>
313
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700314 <chapter id="firmware">
315 <title>Firmware Interfaces</title>
316 <sect1><title>DMI Interfaces</title>
317!Edrivers/firmware/dmi_scan.c
318 </sect1>
319 </chapter>
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 <chapter id="security">
322 <title>Security Framework</title>
323!Esecurity/security.c
324 </chapter>
325
Randy Dunlap862f5f02006-06-23 02:05:52 -0700326 <chapter id="audit">
327 <title>Audit Interfaces</title>
328!Ekernel/audit.c
329!Ikernel/auditsc.c
330!Ikernel/auditfilter.c
331 </chapter>
332
333 <chapter id="accounting">
334 <title>Accounting Framework</title>
335!Ikernel/acct.c
336 </chapter>
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 <chapter id="pmfuncs">
339 <title>Power Management</title>
340!Ekernel/power/pm.c
341 </chapter>
342
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700343 <chapter id="devdrivers">
344 <title>Device drivers infrastructure</title>
345 <sect1><title>Device Drivers Base</title>
346<!--
347X!Iinclude/linux/device.h
348-->
349!Edrivers/base/driver.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700350!Edrivers/base/core.c
Rolf Eike Beer78b22902006-09-29 01:59:12 -0700351!Edrivers/base/class.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700352!Edrivers/base/firmware_class.c
353!Edrivers/base/transport_class.c
354!Edrivers/base/dmapool.c
355<!-- Cannot be included, because
356 attribute_container_add_class_device_adapter
357 and attribute_container_classdev_to_container
358 exceed allowed 44 characters maximum
359X!Edrivers/base/attribute_container.c
360-->
361!Edrivers/base/sys.c
362<!--
363X!Edrivers/base/interface.c
364-->
365!Edrivers/base/platform.c
366!Edrivers/base/bus.c
367 </sect1>
368 <sect1><title>Device Drivers Power Management</title>
369!Edrivers/base/power/main.c
370!Edrivers/base/power/resume.c
371!Edrivers/base/power/suspend.c
372 </sect1>
373 <sect1><title>Device Drivers ACPI Support</title>
374<!-- Internal functions only
375X!Edrivers/acpi/sleep/main.c
376X!Edrivers/acpi/sleep/wakeup.c
377X!Edrivers/acpi/motherboard.c
378X!Edrivers/acpi/bus.c
379-->
380!Edrivers/acpi/scan.c
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500381!Idrivers/acpi/scan.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700382<!-- No correct structured comments
383X!Edrivers/acpi/pci_bind.c
384-->
385 </sect1>
386 <sect1><title>Device drivers PnP support</title>
387!Edrivers/pnp/core.c
388<!-- No correct structured comments
389X!Edrivers/pnp/system.c
390 -->
391!Edrivers/pnp/card.c
392!Edrivers/pnp/driver.c
393!Edrivers/pnp/manager.c
394!Edrivers/pnp/support.c
395 </sect1>
396 </chapter>
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 <chapter id="blkdev">
399 <title>Block Devices</title>
Ben Collins1d193f42005-11-15 00:09:21 -0800400!Eblock/ll_rw_blk.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 </chapter>
402
Jonathan Corbetcf3e43d2006-09-29 02:00:44 -0700403 <chapter id="chrdev">
404 <title>Char devices</title>
405!Efs/char_dev.c
406 </chapter>
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 <chapter id="miscdev">
409 <title>Miscellaneous Devices</title>
410!Edrivers/char/misc.c
411 </chapter>
412
Randy Dunlap7d469722006-06-25 05:49:29 -0700413 <chapter id="parportdev">
414 <title>Parallel Port Devices</title>
415!Iinclude/linux/parport.h
416!Edrivers/parport/ieee1284.c
417!Edrivers/parport/share.c
418!Idrivers/parport/daisy.c
419 </chapter>
420
Randy Dunlapda39aa82006-12-06 20:38:42 -0800421 <chapter id="message_devices">
422 <title>Message-based devices</title>
423 <sect1><title>Fusion message devices</title>
424!Edrivers/message/fusion/mptbase.c
425!Idrivers/message/fusion/mptbase.c
426!Edrivers/message/fusion/mptscsih.c
427!Idrivers/message/fusion/mptscsih.c
428!Idrivers/message/fusion/mptctl.c
429!Idrivers/message/fusion/mptspi.c
430!Idrivers/message/fusion/mptfc.c
431!Idrivers/message/fusion/mptlan.c
432 </sect1>
433 <sect1><title>I2O message devices</title>
434!Iinclude/linux/i2o.h
435!Idrivers/message/i2o/core.h
436!Edrivers/message/i2o/iop.c
437!Idrivers/message/i2o/iop.c
438!Idrivers/message/i2o/config-osm.c
439!Edrivers/message/i2o/exec-osm.c
440!Idrivers/message/i2o/exec-osm.c
441!Idrivers/message/i2o/bus-osm.c
442!Edrivers/message/i2o/device.c
443!Idrivers/message/i2o/device.c
444!Idrivers/message/i2o/driver.c
445!Idrivers/message/i2o/pci.c
446!Idrivers/message/i2o/i2o_block.c
447!Idrivers/message/i2o/i2o_scsi.c
448!Idrivers/message/i2o/i2o_proc.c
449 </sect1>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 </chapter>
451
452 <chapter id="snddev">
453 <title>Sound Devices</title>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700454!Iinclude/sound/core.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455!Esound/sound_core.c
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700456!Iinclude/sound/pcm.h
457!Esound/core/pcm.c
458!Esound/core/device.c
459!Esound/core/info.c
460!Esound/core/rawmidi.c
461!Esound/core/sound.c
462!Esound/core/memory.c
463!Esound/core/pcm_memory.c
464!Esound/core/init.c
465!Esound/core/isadma.c
466!Esound/core/control.c
467!Esound/core/pcm_lib.c
468!Esound/core/hwdep.c
469!Esound/core/pcm_native.c
470!Esound/core/memalloc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471<!-- FIXME: Removed for now since no structured comments in source
472X!Isound/sound_firmware.c
473-->
474 </chapter>
475
476 <chapter id="uart16x50">
477 <title>16x50 UART Driver</title>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700478!Iinclude/linux/serial_core.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479!Edrivers/serial/serial_core.c
480!Edrivers/serial/8250.c
481 </chapter>
482
483 <chapter id="z85230">
484 <title>Z85230 Support Library</title>
485!Edrivers/net/wan/z85230.c
486 </chapter>
487
488 <chapter id="fbdev">
489 <title>Frame Buffer Library</title>
490
491 <para>
492 The frame buffer drivers depend heavily on four data structures.
493 These structures are declared in include/linux/fb.h. They are
494 fb_info, fb_var_screeninfo, fb_fix_screeninfo and fb_monospecs.
495 The last three can be made available to and from userland.
496 </para>
497
498 <para>
499 fb_info defines the current state of a particular video card.
500 Inside fb_info, there exists a fb_ops structure which is a
501 collection of needed functions to make fbdev and fbcon work.
502 fb_info is only visible to the kernel.
503 </para>
504
505 <para>
506 fb_var_screeninfo is used to describe the features of a video card
507 that are user defined. With fb_var_screeninfo, things such as
508 depth and the resolution may be defined.
509 </para>
510
511 <para>
512 The next structure is fb_fix_screeninfo. This defines the
513 properties of a card that are created when a mode is set and can't
514 be changed otherwise. A good example of this is the start of the
515 frame buffer memory. This "locks" the address of the frame buffer
516 memory, so that it cannot be changed or moved.
517 </para>
518
519 <para>
520 The last structure is fb_monospecs. In the old API, there was
521 little importance for fb_monospecs. This allowed for forbidden things
522 such as setting a mode of 800x600 on a fix frequency monitor. With
523 the new API, fb_monospecs prevents such things, and if used
524 correctly, can prevent a monitor from being cooked. fb_monospecs
525 will not be useful until kernels 2.5.x.
526 </para>
527
528 <sect1><title>Frame Buffer Memory</title>
529!Edrivers/video/fbmem.c
530 </sect1>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700531<!--
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 <sect1><title>Frame Buffer Console</title>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700533X!Edrivers/video/console/fbcon.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 </sect1>
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700535-->
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 <sect1><title>Frame Buffer Colormap</title>
537!Edrivers/video/fbcmap.c
538 </sect1>
539<!-- FIXME:
540 drivers/video/fbgen.c has no docs, which stuffs up the sgml. Comment
541 out until somebody adds docs. KAO
542 <sect1><title>Frame Buffer Generic Functions</title>
543X!Idrivers/video/fbgen.c
544 </sect1>
545KAO -->
546 <sect1><title>Frame Buffer Video Mode Database</title>
547!Idrivers/video/modedb.c
548!Edrivers/video/modedb.c
549 </sect1>
550 <sect1><title>Frame Buffer Macintosh Video Mode Database</title>
Randy Dunlap8f2709b2005-11-07 01:01:05 -0800551!Edrivers/video/macmodes.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 </sect1>
553 <sect1><title>Frame Buffer Fonts</title>
554 <para>
555 Refer to the file drivers/video/console/fonts.c for more information.
556 </para>
557<!-- FIXME: Removed for now since no structured comments in source
558X!Idrivers/video/console/fonts.c
559-->
560 </sect1>
561 </chapter>
Randy Dunlape4477d22006-11-24 00:43:09 -0500562
563 <chapter id="input_subsystem">
564 <title>Input Subsystem</title>
565!Iinclude/linux/input.h
566!Edrivers/input/input.c
567!Edrivers/input/ff-core.c
568!Edrivers/input/ff-memless.c
569 </chapter>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570</book>