diff options
76 files changed, 102 insertions, 113 deletions
diff --git a/Documentation/DocBook/.gitignore b/Documentation/DocBook/.gitignore index 720f245ceb1f..7ebd5465d927 100644 --- a/Documentation/DocBook/.gitignore +++ b/Documentation/DocBook/.gitignore | |||
| @@ -10,5 +10,6 @@ | |||
| 10 | *.out | 10 | *.out |
| 11 | *.png | 11 | *.png |
| 12 | *.gif | 12 | *.gif |
| 13 | *.svg | ||
| 13 | media-indices.tmpl | 14 | media-indices.tmpl |
| 14 | media-entities.tmpl | 15 | media-entities.tmpl |
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index bc3d9f8c0a90..0f9c6ff41aac 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile | |||
| @@ -54,6 +54,7 @@ htmldocs: $(HTML) | |||
| 54 | 54 | ||
| 55 | MAN := $(patsubst %.xml, %.9, $(BOOKS)) | 55 | MAN := $(patsubst %.xml, %.9, $(BOOKS)) |
| 56 | mandocs: $(MAN) | 56 | mandocs: $(MAN) |
| 57 | $(if $(wildcard $(obj)/man/*.9),gzip -f $(obj)/man/*.9) | ||
| 57 | 58 | ||
| 58 | installmandocs: mandocs | 59 | installmandocs: mandocs |
| 59 | mkdir -p /usr/local/man/man9/ | 60 | mkdir -p /usr/local/man/man9/ |
| @@ -145,7 +146,7 @@ build_main_index = rm -rf $(main_idx); \ | |||
| 145 | cat $(HTML) >> $(main_idx) | 146 | cat $(HTML) >> $(main_idx) |
| 146 | 147 | ||
| 147 | quiet_cmd_db2html = HTML $@ | 148 | quiet_cmd_db2html = HTML $@ |
| 148 | cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \ | 149 | cmd_db2html = xmlto html $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \ |
| 149 | echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \ | 150 | echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \ |
| 150 | $(patsubst %.html,%,$(notdir $@))</a><p>' > $@ | 151 | $(patsubst %.html,%,$(notdir $@))</a><p>' > $@ |
| 151 | 152 | ||
| @@ -159,7 +160,7 @@ quiet_cmd_db2html = HTML $@ | |||
| 159 | cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi | 160 | cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi |
| 160 | 161 | ||
| 161 | quiet_cmd_db2man = MAN $@ | 162 | quiet_cmd_db2man = MAN $@ |
| 162 | cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; gzip -f $(obj)/man/*.9; fi | 163 | cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; fi |
| 163 | %.9 : %.xml | 164 | %.9 : %.xml |
| 164 | @(which xmlto > /dev/null 2>&1) || \ | 165 | @(which xmlto > /dev/null 2>&1) || \ |
| 165 | (echo "*** You need to install xmlto ***"; \ | 166 | (echo "*** You need to install xmlto ***"; \ |
diff --git a/Documentation/DocBook/kernel-api.tmpl b/Documentation/DocBook/kernel-api.tmpl index f75ab4c1b281..ecfd0ea40661 100644 --- a/Documentation/DocBook/kernel-api.tmpl +++ b/Documentation/DocBook/kernel-api.tmpl | |||
| @@ -109,6 +109,7 @@ X!Ilib/string.c | |||
| 109 | <sect1><title>The Slab Cache</title> | 109 | <sect1><title>The Slab Cache</title> |
| 110 | !Iinclude/linux/slab.h | 110 | !Iinclude/linux/slab.h |
| 111 | !Emm/slab.c | 111 | !Emm/slab.c |
| 112 | !Emm/util.c | ||
| 112 | </sect1> | 113 | </sect1> |
| 113 | <sect1><title>User Space Memory Access</title> | 114 | <sect1><title>User Space Memory Access</title> |
| 114 | !Iarch/x86/include/asm/uaccess_32.h | 115 | !Iarch/x86/include/asm/uaccess_32.h |
diff --git a/Documentation/IRQ-domain.txt b/Documentation/IRQ-domain.txt index 9bc95942ec22..03df71aeb38c 100644 --- a/Documentation/IRQ-domain.txt +++ b/Documentation/IRQ-domain.txt | |||
| @@ -141,7 +141,7 @@ will use a legacy domain only if an IRQ range is supplied by the | |||
| 141 | system and will otherwise use a linear domain mapping. The semantics | 141 | system and will otherwise use a linear domain mapping. The semantics |
| 142 | of this call are such that if an IRQ range is specified then | 142 | of this call are such that if an IRQ range is specified then |
| 143 | descriptors will be allocated on-the-fly for it, and if no range is | 143 | descriptors will be allocated on-the-fly for it, and if no range is |
| 144 | specified it will fall through to irq_domain_add_linear() which meand | 144 | specified it will fall through to irq_domain_add_linear() which means |
| 145 | *no* irq descriptors will be allocated. | 145 | *no* irq descriptors will be allocated. |
| 146 | 146 | ||
| 147 | A typical use case for simple domains is where an irqchip provider | 147 | A typical use case for simple domains is where an irqchip provider |
diff --git a/Documentation/driver-model/platform.txt b/Documentation/driver-model/platform.txt index 41f41632ee55..07795ec51cde 100644 --- a/Documentation/driver-model/platform.txt +++ b/Documentation/driver-model/platform.txt | |||
| @@ -48,7 +48,7 @@ struct platform_driver { | |||
| 48 | struct device_driver driver; | ||
