[PATCH] DocBook: update comments

This patch updates some comments to match code changes.

Signed-off-by: Martin Waitz <tali@admingilde.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Martin Waitz and committed by Linus Torvalds 3d41088f 363412b4

+7 -6
+1 -1
Documentation/DocBook/kernel-api.tmpl
··· 266 <chapter id="hardware"> 267 <title>Hardware Interfaces</title> 268 <sect1><title>Interrupt Handling</title> 269 - !Iarch/i386/kernel/irq.c 270 </sect1> 271 272 <sect1><title>Resources Management</title>
··· 266 <chapter id="hardware"> 267 <title>Hardware Interfaces</title> 268 <sect1><title>Interrupt Handling</title> 269 + !Ikernel/irq/manage.c 270 </sect1> 271 272 <sect1><title>Resources Management</title>
+1 -2
drivers/pnp/card.c
··· 259 260 /** 261 * pnp_remove_card_device- removes a device from the specified card 262 - * @card: pointer to the card to remove from 263 * @dev: pointer to the device to remove 264 */ 265 ··· 273 274 /** 275 * pnp_request_card_device - Searches for a PnP device under the specified card 276 - * @lcard: pointer to the card link, cannot be NULL 277 * @id: pointer to a PnP ID structure that explains the rules for finding the device 278 * @from: Starting place to search from. If NULL it will start from the begining. 279 */
··· 259 260 /** 261 * pnp_remove_card_device- removes a device from the specified card 262 * @dev: pointer to the device to remove 263 */ 264 ··· 274 275 /** 276 * pnp_request_card_device - Searches for a PnP device under the specified card 277 + * @clink: pointer to the card link, cannot be NULL 278 * @id: pointer to a PnP ID structure that explains the rules for finding the device 279 * @from: Starting place to search from. If NULL it will start from the begining. 280 */
+1
drivers/pnp/manager.c
··· 390 * pnp_manual_config_dev - Disables Auto Config and Manually sets the resource table 391 * @dev: pointer to the desired device 392 * @res: pointer to the new resource config 393 * 394 * This function can be used by drivers that want to manually set thier resources. 395 */
··· 390 * pnp_manual_config_dev - Disables Auto Config and Manually sets the resource table 391 * @dev: pointer to the desired device 392 * @res: pointer to the new resource config 393 + * @mode: 0 or PNP_CONFIG_FORCE 394 * 395 * This function can be used by drivers that want to manually set thier resources. 396 */
+3 -2
fs/sysfs/file.c
··· 14 #define to_subsys(k) container_of(k,struct subsystem,kset.kobj) 15 #define to_sattr(a) container_of(a,struct subsys_attribute,attr) 16 17 - /** 18 * Subsystem file operations. 19 * These operations allow subsystems to have files that can be 20 * read/written. ··· 192 193 /** 194 * flush_write_buffer - push buffer to kobject. 195 - * @file: file pointer. 196 * @buffer: data buffer for file. 197 * 198 * Get the correct pointers for the kobject and the attribute we're 199 * dealing with, then call the store() method for the attribute,
··· 14 #define to_subsys(k) container_of(k,struct subsystem,kset.kobj) 15 #define to_sattr(a) container_of(a,struct subsys_attribute,attr) 16 17 + /* 18 * Subsystem file operations. 19 * These operations allow subsystems to have files that can be 20 * read/written. ··· 192 193 /** 194 * flush_write_buffer - push buffer to kobject. 195 + * @dentry: dentry to the attribute 196 * @buffer: data buffer for file. 197 + * @count: number of bytes 198 * 199 * Get the correct pointers for the kobject and the attribute we're 200 * dealing with, then call the store() method for the attribute,
+1 -1
mm/memory.c
··· 1458 * unmap_mapping_range - unmap the portion of all mmaps 1459 * in the specified address_space corresponding to the specified 1460 * page range in the underlying file. 1461 - * @address_space: the address space containing mmaps to be unmapped. 1462 * @holebegin: byte in first page to unmap, relative to the start of 1463 * the underlying file. This will be rounded down to a PAGE_SIZE 1464 * boundary. Note that this is different from vmtruncate(), which
··· 1458 * unmap_mapping_range - unmap the portion of all mmaps 1459 * in the specified address_space corresponding to the specified 1460 * page range in the underlying file. 1461 + * @mapping: the address space containing mmaps to be unmapped. 1462 * @holebegin: byte in first page to unmap, relative to the start of 1463 * the underlying file. This will be rounded down to a PAGE_SIZE 1464 * boundary. Note that this is different from vmtruncate(), which