aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2014-02-18 08:54:36 -0500
committerJiri Kosina <jkosina@suse.cz>2014-02-19 08:58:17 -0500
commite227867f12302633737bd2a48a10a9a72c0630cb (patch)
treec1d96c1f4c3d83b7d6fe3b0c15d480d366ccc8f8
parent425529937b6ce37e47120d6b2fb895c5b9910591 (diff)
treewide: Fix typo in Documentation/DocBook
This patch fix spelling typo in Documentation/DocBook. It is because .html and .xml files are generated by make htmldocs, I have to fix a typo within the source files. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--arch/s390/include/asm/cio.h2
-rw-r--r--block/blk-core.c2
-rw-r--r--block/blk-map.c2
-rw-r--r--drivers/ata/libata-core.c4
-rw-r--r--drivers/base/bus.c2
-rw-r--r--drivers/gpu/drm/drm_crtc_helper.c2
-rw-r--r--drivers/input/sparse-keymap.c2
-rw-r--r--drivers/regulator/core.c2
-rw-r--r--drivers/scsi/scsi_transport_iscsi.c6
-rw-r--r--drivers/usb/core/message.c2
-rw-r--r--drivers/usb/core/urb.c2
-rw-r--r--fs/buffer.c2
-rw-r--r--fs/debugfs/inode.c6
-rw-r--r--include/drm/drm_fb_helper.h2
-rw-r--r--include/linux/hsi/hsi.h2
-rw-r--r--include/linux/kfifo.h2
-rw-r--r--include/linux/pipe_fs_i.h2
-rw-r--r--include/linux/skbuff.h2
-rw-r--r--include/linux/spi/spi.h8
-rw-r--r--include/linux/usb/composite.h2
-rw-r--r--include/net/mac80211.h6
-rw-r--r--kernel/relay.c2
-rw-r--r--kernel/signal.c2
-rw-r--r--net/core/dev.c2
24 files changed, 34 insertions, 34 deletions
diff --git a/arch/s390/include/asm/cio.h b/arch/s390/include/asm/cio.h
index d42625053c37..096339207764 100644
--- a/arch/s390/include/asm/cio.h
+++ b/arch/s390/include/asm/cio.h
@@ -199,7 +199,7 @@ struct esw_eadm {
199/** 199/**
200 * struct irb - interruption response block 200 * struct irb - interruption response block
201 * @scsw: subchannel status word 201 * @scsw: subchannel status word
202 * @esw: extened status word 202 * @esw: extended status word
203 * @ecw: extended control word 203 * @ecw: extended control word
204 * 204 *
205 * The irb that is handed to the device driver when an interrupt occurs. For 205 * The irb that is handed to the device driver when an interrupt occurs. For
diff --git a/block/blk-core.c b/block/blk-core.c
index 8bdd0121212a..cd0158163fe0 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1900,7 +1900,7 @@ EXPORT_SYMBOL(submit_bio);
1900 * in some cases below, so export this function. 1900 * in some cases below, so export this function.
1901 * Request stacking drivers like request-based dm may change the queue 1901 * Request stacking drivers like request-based dm may change the queue
1902 * limits while requests are in the queue (e.g. dm's table swapping). 1902 * limits while requests are in the queue (e.g. dm's table swapping).
1903 * Such request stacking drivers should check those requests agaist 1903 * Such request stacking drivers should check those requests against
1904 * the new queue limits again when they dispatch those requests, 1904 * the new queue limits again when they dispatch those requests,
1905 * although such checkings are also done against the old queue limits 1905 * although such checkings are also done against the old queue limits
1906 * when submitting requests. 1906 * when submitting requests.
diff --git a/block/blk-map.c b/block/blk-map.c
index 623e1cd4cffe..62382ad5b010 100644
--- a/block/blk-map.c
+++ b/block/blk-map.c
@@ -285,7 +285,7 @@ EXPORT_SYMBOL(blk_rq_unmap_user);
285 * 285 *
286 * Description: 286 * Description:
287 * Data will be mapped directly if possible. Otherwise a bounce 287 * Data will be mapped directly if possible. Otherwise a bounce
288 * buffer is used. Can be called multple times to append multple 288 * buffer is used. Can be called multiple times to append multiple
289 * buffers. 289 * buffers.
290 */ 290 */
291int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf, 291int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf,
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 75b93678bbcd..1274720e6bb9 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -1524,7 +1524,7 @@ static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
1524 * @dev: Device to which the command is sent 1524 * @dev: Device to which the command is sent
1525 * @tf: Taskfile registers for the command and the result 1525 * @tf: Taskfile registers for the command and the result
1526 * @cdb: CDB for packet command 1526 * @cdb: CDB for packet command
1527 * @dma_dir: Data tranfer direction of the command 1527 * @dma_dir: Data transfer direction of the command
1528 * @sgl: sg list for the data buffer of the command 1528 * @sgl: sg list for the data buffer of the command
1529 * @n_elem: Number of sg entries 1529 * @n_elem: Number of sg entries
1530 * @timeout: Timeout in msecs (0 for default) 1530 * @timeout: Timeout in msecs (0 for default)
@@ -1712,7 +1712,7 @@ unsigned ata_exec_internal_sg(struct ata_device *dev,
1712 * @dev: Device to which the command is sent 1712 * @dev: Device to which the command is sent
1713 * @tf: Taskfile registers for the command and the result 1713 * @tf: Taskfile registers for the command and the result
1714 * @cdb: CDB for packet command 1714 * @cdb: CDB for packet command
1715 * @dma_dir: Data tranfer direction of the command 1715 * @dma_dir: Data transfer direction of the command
1716 * @buf: Data buffer of the command 1716 * @buf: Data buffer of the command
1717 * @buflen: Length of data buffer 1717 * @buflen: Length of data buffer
1718 * @timeout: Timeout in msecs (0 for default) 1718 * @timeout: Timeout in msecs (0 for default)
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index 73f6c2925281..1db22d3c4036 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -1209,7 +1209,7 @@ err_dev:
1209 * with the name of the subsystem. The root device can carry subsystem- 1209 * with the name of the subsystem. The root device can carry subsystem-
1210 * wide attributes. All registered devices are below this single root 1210 * wide attributes. All registered devices are below this single root
1211 * device and are named after the subsystem with a simple enumeration 1211 * device and are named after the subsystem with a simple enumeration
1212 * number appended. The registered devices are not explicitely named; 1212 * number appended. The registered devices are not explicitly named;
1213 * only 'id' in the device needs to be set. 1213 * only 'id' in the device needs to be set.
1214 * 1214 *
1215 * Do not use this interface for anything new, it exists for compatibility 1215 * Do not use this interface for anything new, it exists for compatibility
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
index 01361aba033b..0058fd74063e 100644
--- a/drivers/gpu/drm/drm_crtc_helper.c
+++ b/drivers/gpu/drm/drm_crtc_helper.c
@@ -593,7 +593,7 @@ drm_crtc_helper_disable(struct drm_crtc *crtc)
593 * Caller must hold mode config lock. 593 * Caller must hold mode config lock.
594 * 594 *
595 * Setup a new configuration, provided by the upper layers (either an ioctl call 595 * Setup a new configuration, provided by the upper layers (either an ioctl call
596 * from userspace or internally e.g. from the fbdev suppport code) in @set, and 596 * from userspace or internally e.g. from the fbdev support code) in @set, and
597 * enable it. This is the main helper functions for drivers that implement 597 * enable it. This is the main helper functions for drivers that implement
598 * kernel mode setting with the crtc helper functions and the assorted 598 * kernel mode setting with the crtc helper functions and the assorted
599 * ->prepare(), ->modeset() and ->commit() helper callbacks. 599 * ->prepare(), ->modeset() and ->commit() helper callbacks.
diff --git a/drivers/input/sparse-keymap.c b/drivers/input/sparse-keymap.c
index a70aa555bbff..e7409c45bdd0 100644
--- a/drivers/input/sparse-keymap.c
+++ b/drivers/input/sparse-keymap.c
@@ -236,7 +236,7 @@ EXPORT_SYMBOL(sparse_keymap_setup);
236 * in an input device that was set up by sparse_keymap_setup(). 236 * in an input device that was set up by sparse_keymap_setup().
237 * NOTE: It is safe to cal this function while input device is 237 * NOTE: It is safe to cal this function while input device is
238 * still registered (however the drivers should care not to try to 238 * still registered (however the drivers should care not to try to
239 * use freed keymap and thus have to shut off interrups/polling 239 * use freed keymap and thus have to shut off interrupts/polling
240 * before freeing the keymap). 240 * before freeing the keymap).
241 */ 241 */
242void sparse_keymap_free(struct input_dev *dev) 242void sparse_keymap_free(struct input_dev *dev)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index d85f31385b24..d59aa96a4dc4 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2134,7 +2134,7 @@ EXPORT_SYMBOL_GPL(regulator_is_enabled);
2134 * @regulator: regulator source 2134 * @regulator: regulator source
2135 * 2135 *
2136 * Returns positive if the regulator driver backing the source/client 2136 * Returns positive if the regulator driver backing the source/client
2137 * can change its voltage, false otherwise. Usefull for detecting fixed 2137 * can change its voltage, false otherwise. Useful for detecting fixed
2138 * or dummy regulators and disabling voltage change logic in the client 2138 * or dummy regulators and disabling voltage change logic in the client
2139 * driver. 2139 * driver.
2140 */ 2140 */
diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c
index 63a6ca49d4e5..de5b4d9bb022 100644
--- a/drivers/scsi/scsi_transport_iscsi.c
+++ b/drivers/scsi/scsi_transport_iscsi.c
@@ -891,7 +891,7 @@ struct bus_type iscsi_flashnode_bus = {
891 * Adds a sysfs entry for the flashnode session attributes 891 * Adds a sysfs entry for the flashnode session attributes
892 * 892 *
893 * Returns: 893 * Returns:
894 * pointer to allocated flashnode sess on sucess 894 * pointer to allocated flashnode sess on success
895 * %NULL on failure 895 * %NULL on failure
896 */ 896 */
897struct iscsi_bus_flash_session * 897struct iscsi_bus_flash_session *
@@ -1089,7 +1089,7 @@ static int iscsi_iter_destroy_flashnode_conn_fn(struct device *dev, void *data)
1089} 1089}
1090 1090
1091/** 1091/**
1092 * iscsi_destroy_flashnode_sess - destory flashnode session entry 1092 * iscsi_destroy_flashnode_sess - destroy flashnode session entry
1093 * @fnode_sess: pointer to flashnode session entry to be destroyed 1093 * @fnode_sess: pointer to flashnode session entry to be destroyed
1094 * 1094 *
1095 * Deletes the flashnode session entry and all children flashnode connection 1095 * Deletes the flashnode session entry and all children flashnode connection
@@ -1119,7 +1119,7 @@ static int iscsi_iter_destroy_flashnode_fn(struct device *dev, void *data)
1119} 1119}
1120 1120
1121/** 1121/**
1122 * iscsi_destroy_all_flashnode - destory all flashnode session entries 1122 * iscsi_destroy_all_flashnode - destroy all flashnode session entries
1123 * @shost: pointer to host data 1123 * @shost: pointer to host data
1124 * 1124 *
1125 * Destroys all the flashnode session entries and all corresponding children 1125 * Destroys all the flashnode session entries and all corresponding children
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c
index bb315970e475..874d1a406ebc 100644
--- a/drivers/usb/core/message.c
+++ b/drivers/usb/core/message.c
@@ -179,7 +179,7 @@ EXPORT_SYMBOL_GPL(usb_control_msg);
179 * 179 *
180 * Return: 180 * Return:
181 * If successful, 0. Otherwise a negative error number. The number of actual 181 * If successful, 0. Otherwise a negative error number. The number of actual
182 * bytes transferred will be stored in the @actual_length paramater. 182 * bytes transferred will be stored in the @actual_length parameter.
183 */ 183 */
184int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe, 184int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
185 void *data, int len, int *actual_length, int timeout) 185 void *data, int len, int *actual_length, int timeout)
diff --git a/drivers/usb/core/urb.c b/drivers/usb/core/urb.c
index e62208356c89..e726f5e80448 100644
--- a/drivers/usb/core/urb.c
+++ b/drivers/usb/core/urb.c
@@ -834,7 +834,7 @@ EXPORT_SYMBOL_GPL(usb_unpoison_anchored_urbs);
834 * 834 *
835 * this allows all outstanding URBs to be unlinked starting 835 * this allows all outstanding URBs to be unlinked starting
836 * from the back of the queue. This function is asynchronous. 836 * from the back of the queue. This function is asynchronous.
837 * The unlinking is just tiggered. It may happen after this 837 * The unlinking is just triggered. It may happen after this
838 * function has returned. 838 * function has returned.
839 * 839 *
840 * This routine should not be called by a driver after its disconnect 840 * This routine should not be called by a driver after its disconnect
diff --git a/fs/buffer.c b/fs/buffer.c
index 6024877335ca..a20f2eb107ed 100644
--- a/fs/buffer.c
+++ b/fs/buffer.c
@@ -3086,7 +3086,7 @@ EXPORT_SYMBOL(submit_bh);
3086 * until the buffer gets unlocked). 3086 * until the buffer gets unlocked).
3087 * 3087 *
3088 * ll_rw_block sets b_end_io to simple completion handler that marks 3088 * ll_rw_block sets b_end_io to simple completion handler that marks
3089 * the buffer up-to-date (if approriate), unlocks the buffer and wakes 3089 * the buffer up-to-date (if appropriate), unlocks the buffer and wakes
3090 * any waiters. 3090 * any waiters.
3091 * 3091 *
3092 * All of the buffers must be for the same device, and must also be a 3092 * All of the buffers must be for the same device, and must also be a
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index 9c0444cccbe1..ca4a08f38374 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -358,7 +358,7 @@ exit:
358 * @name: a pointer to a string containing the name of the file to create. 358 * @name: a pointer to a string containing the name of the file to create.
359 * @mode: the permission that the file should have. 359 * @mode: the permission that the file should have.
360 * @parent: a pointer to the parent dentry for this file. This should be a 360 * @parent: a pointer to the parent dentry for this file. This should be a
361 * directory dentry if set. If this paramater is NULL, then the 361 * directory dentry if set. If this parameter is NULL, then the
362 * file will be created in the root of the debugfs filesystem. 362 * file will be created in the root of the debugfs filesystem.
363 * @data: a pointer to something that the caller will want to get to later 363 * @data: a pointer to something that the caller will want to get to later
364 * on. The inode.i_private pointer will point to this value on 364 * on. The inode.i_private pointer will point to this value on
@@ -400,7 +400,7 @@ EXPORT_SYMBOL_GPL(debugfs_create_file);
400 * @name: a pointer to a string containing the name of the directory to 400 * @name: a pointer to a string containing the name of the directory to
401 * create. 401 * create.
402 * @parent: a pointer to the parent dentry for this file. This should be a 402 * @parent: a pointer to the parent dentry for this file. This should be a
403 * directory dentry if set. If this paramater is NULL, then the 403 * directory dentry if set. If this parameter is NULL, then the
404 * directory will be created in the root of the debugfs filesystem. 404 * directory will be created in the root of the debugfs filesystem.
405 * 405 *
406 * This function creates a directory in debugfs with the given name. 406 * This function creates a directory in debugfs with the given name.
@@ -425,7 +425,7 @@ EXPORT_SYMBOL_GPL(debugfs_create_dir);
425 * @name: a pointer to a string containing the name of the symbolic link to 425 * @name: a pointer to a string containing the name of the symbolic link to
426 * create. 426 * create.
427 * @parent: a pointer to the parent dentry for this symbolic link. This 427 * @parent: a pointer to the parent dentry for this symbolic link. This
428 * should be a directory dentry if set. If this paramater is NULL, 428 * should be a directory dentry if set. If this parameter is NULL,
429 * then the symbolic link will be created in the root of the debugfs 429 * then the symbolic link will be created in the root of the debugfs
430 * filesystem. 430 * filesystem.
431 * @target: a pointer to a string containing the path to the target of the 431 * @target: a pointer to a string containing the path to the target of the
diff --git a/include/drm/drm_fb_helper.h b/include/drm/drm_fb_helper.h
index 471f276ce8f7..0145b948b147 100644
--- a/include/drm/drm_fb_helper.h
+++ b/include/drm/drm_fb_helper.h
@@ -55,7 +55,7 @@ struct drm_fb_helper_surface_size {
55 * save the current lut when force-restoring the fbdev for e.g. 55 * save the current lut when force-restoring the fbdev for e.g.
56 * kdbg. 56 * kdbg.
57 * @fb_probe: Driver callback to allocate and initialize the fbdev info 57 * @fb_probe: Driver callback to allocate and initialize the fbdev info
58 * structure. Futhermore it also needs to allocate the drm 58 * structure. Furthermore it also needs to allocate the drm
59 * framebuffer used to back the fbdev. 59 * framebuffer used to back the fbdev.
60 * @initial_config: Setup an initial fbdev display configuration 60 * @initial_config: Setup an initial fbdev display configuration
61 * 61 *
diff --git a/include/linux/hsi/hsi.h b/include/linux/hsi/hsi.h
index 0dca785288cf..39bfd5b89077 100644
--- a/include/linux/hsi/hsi.h
+++ b/include/linux/hsi/hsi.h
@@ -178,7 +178,7 @@ static inline void hsi_unregister_client_driver(struct hsi_client_driver *drv)
178 * @complete: Transfer completion callback 178 * @complete: Transfer completion callback
179 * @destructor: Destructor to free resources when flushing 179 * @destructor: Destructor to free resources when flushing
180 * @status: Status of the transfer when completed 180 * @status: Status of the transfer when completed
181 * @actual_len: Actual length of data transfered on completion 181 * @actual_len: Actual length of data transferred on completion
182 * @channel: Channel were to TX/RX the message 182 * @channel: Channel were to TX/RX the message
183 * @ttype: Transfer type (TX if set, RX otherwise) 183 * @ttype: Transfer type (TX if set, RX otherwise)
184 * @break_frame: if true HSI will send/receive a break frame. Data buffers are 184 * @break_frame: if true HSI will send/receive a break frame. Data buffers are
diff --git a/include/linux/kfifo.h b/include/linux/kfifo.h
index 552d51efb429..554fde3a3927 100644
--- a/include/linux/kfifo.h
+++ b/include/linux/kfifo.h
@@ -722,7 +722,7 @@ __kfifo_uint_must_check_helper( \
722/** 722/**
723 * kfifo_dma_out_finish - finish a DMA OUT operation 723 * kfifo_dma_out_finish - finish a DMA OUT operation
724 * @fifo: address of the fifo to be used 724 * @fifo: address of the fifo to be used
725 * @len: number of bytes transferd 725 * @len: number of bytes transferrd
726 * 726 *
727 * This macro finish a DMA OUT operation. The out counter will be updated by 727 * This macro finish a DMA OUT operation. The out counter will be updated by
728 * the len parameter. No error checking will be done. 728 * the len parameter. No error checking will be done.
diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h
index b8809fef61f5..11982d0ce11b 100644
--- a/include/linux/pipe_fs_i.h
+++ b/include/linux/pipe_fs_i.h
@@ -35,7 +35,7 @@ struct pipe_buffer {
35 * @tmp_page: cached released page 35 * @tmp_page: cached released page
36 * @readers: number of current readers of this pipe 36 * @readers: number of current readers of this pipe
37 * @writers: number of current writers of this pipe 37 * @writers: number of current writers of this pipe
38 * @files: number of struct file refering this pipe (protected by ->i_lock) 38 * @files: number of struct file referring this pipe (protected by ->i_lock)
39 * @waiting_writers: number of writers blocked waiting for room 39 * @waiting_writers: number of writers blocked waiting for room
40 * @r_counter: reader counter 40 * @r_counter: reader counter
41 * @w_counter: writer counter 41 * @w_counter: writer counter
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 215b5ea1cb30..cde842513df2 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1951,7 +1951,7 @@ static inline void skb_propagate_pfmemalloc(struct page *page,
1951} 1951}
1952 1952
1953/** 1953/**
1954 * skb_frag_page - retrieve the page refered to by a paged fragment 1954 * skb_frag_page - retrieve the page referred to by a paged fragment
1955 * @frag: the paged fragment 1955 * @frag: the paged fragment
1956 * 1956 *
1957 * Returns the &struct page associated with @frag. 1957 * Returns the &struct page associated with @frag.
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h
index 8c62ba74dd91..8d3a37bc6110 100644
--- a/include/linux/spi/spi.h
+++ b/include/linux/spi/spi.h
@@ -234,7 +234,7 @@ static inline void spi_unregister_driver(struct spi_driver *sdrv)
234 * @mode_bits: flags understood by this controller driver 234 * @mode_bits: flags understood by this controller driver
235 * @bits_per_word_mask: A mask indicating which values of bits_per_word are 235 * @bits_per_word_mask: A mask indicating which values of bits_per_word are
236 * supported by the driver. Bit n indicates that a bits_per_word n+1 is 236 * supported by the driver. Bit n indicates that a bits_per_word n+1 is
237 * suported. If set, the SPI core will reject any transfer with an 237 * supported. If set, the SPI core will reject any transfer with an
238 * unsupported bits_per_word. If not set, this value is simply ignored, 238 * unsupported bits_per_word. If not set, this value is simply ignored,
239 * and it's up to the individual driver to perform any validation. 239 * and it's up to the individual driver to perform any validation.
240 * @min_speed_hz: Lowest supported transfer speed 240 * @min_speed_hz: Lowest supported transfer speed
@@ -259,7 +259,7 @@ static inline void spi_unregister_driver(struct spi_driver *sdrv)
259 * @cur_msg: the currently in-flight message 259 * @cur_msg: the currently in-flight message
260 * @cur_msg_prepared: spi_prepare_message was called for the currently 260 * @cur_msg_prepared: spi_prepare_message was called for the currently
261 * in-flight message 261 * in-flight message
262 * @xfer_completion: used by core tranfer_one_message() 262 * @xfer_completion: used by core transfer_one_message()
263 * @busy: message pump is busy 263 * @busy: message pump is busy
264 * @running: message pump is running 264 * @running: message pump is running
265 * @rt: whether this queue is set to run as a realtime task 265 * @rt: whether this queue is set to run as a realtime task
@@ -493,7 +493,7 @@ extern struct spi_master *spi_busnum_to_master(u16 busnum);
493 * @rx_buf: data to be read (dma-safe memory), or NULL 493 * @rx_buf: data to be read (dma-safe memory), or NULL
494 * @tx_dma: DMA address of tx_buf, if @spi_message.is_dma_mapped 494 * @tx_dma: DMA address of tx_buf, if @spi_message.is_dma_mapped
495 * @rx_dma: DMA address of rx_buf, if @spi_message.is_dma_mapped 495 * @rx_dma: DMA address of rx_buf, if @spi_message.is_dma_mapped
496 * @tx_nbits: number of bits used for writting. If 0 the default 496 * @tx_nbits: number of bits used for writing. If 0 the default
497 * (SPI_NBITS_SINGLE) is used. 497 * (SPI_NBITS_SINGLE) is used.
498 * @rx_nbits: number of bits used for reading. If 0 the default 498 * @rx_nbits: number of bits used for reading. If 0 the default
499 * (SPI_NBITS_SINGLE) is used. 499 * (SPI_NBITS_SINGLE) is used.
@@ -551,7 +551,7 @@ extern struct spi_master *spi_busnum_to_master(u16 busnum);
551 * by the results of previous messages and where the whole transaction 551 * by the results of previous messages and where the whole transaction
552 * ends when the chipselect goes intactive. 552 * ends when the chipselect goes intactive.
553 * 553 *
554 * When SPI can transfer in 1x,2x or 4x. It can get this tranfer information 554 * When SPI can transfer in 1x,2x or 4x. It can get this transfer information
555 * from device through @tx_nbits and @rx_nbits. In Bi-direction, these 555 * from device through @tx_nbits and @rx_nbits. In Bi-direction, these
556 * two should both be set. User can set transfer mode with SPI_NBITS_SINGLE(1x) 556 * two should both be set. User can set transfer mode with SPI_NBITS_SINGLE(1x)
557 * SPI_NBITS_DUAL(2x) and SPI_NBITS_QUAD(4x) to support these three transfer. 557 * SPI_NBITS_DUAL(2x) and SPI_NBITS_QUAD(4x) to support these three transfer.
diff --git a/include/linux/usb/composite.h b/include/linux/usb/composite.h
index 5e61589fc166..0e7a555cab1e 100644
--- a/include/linux/usb/composite.h
+++ b/include/linux/usb/composite.h
@@ -92,7 +92,7 @@ struct usb_configuration;
92 * @suspend: Notifies functions when the host stops sending USB traffic. 92 * @suspend: Notifies functions when the host stops sending USB traffic.
93 * @resume: Notifies functions when the host restarts USB traffic. 93 * @resume: Notifies functions when the host restarts USB traffic.
94 * @get_status: Returns function status as a reply to 94 * @get_status: Returns function status as a reply to
95 * GetStatus() request when the recepient is Interface. 95 * GetStatus() request when the recipient is Interface.
96 * @func_suspend: callback to be called when 96 * @func_suspend: callback to be called when
97 * SetFeature(FUNCTION_SUSPEND) is reseived 97 * SetFeature(FUNCTION_SUSPEND) is reseived
98 * 98 *
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 7ceed99a05bc..6b79bfc98175 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -1841,7 +1841,7 @@ void ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb);
1841 * 1841 *
1842 * Driver informs U-APSD client support by enabling 1842 * Driver informs U-APSD client support by enabling
1843 * %IEEE80211_HW_SUPPORTS_UAPSD flag. The mode is configured through the 1843 * %IEEE80211_HW_SUPPORTS_UAPSD flag. The mode is configured through the
1844 * uapsd paramater in conf_tx() operation. Hardware needs to send the QoS 1844 * uapsd parameter in conf_tx() operation. Hardware needs to send the QoS
1845 * Nullfunc frames and stay awake until the service period has ended. To 1845 * Nullfunc frames and stay awake until the service period has ended. To
1846 * utilize U-APSD, dynamic powersave is disabled for voip AC and all frames 1846 * utilize U-APSD, dynamic powersave is disabled for voip AC and all frames
1847 * from that AC are transmitted with powersave enabled. 1847 * from that AC are transmitted with powersave enabled.
@@ -2047,7 +2047,7 @@ void ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb);
2047 * with the number of frames to be released and which TIDs they are 2047 * with the number of frames to be released and which TIDs they are
2048 * to come from. In this case, the driver is responsible for setting 2048 * to come from. In this case, the driver is responsible for setting
2049 * the EOSP (for uAPSD) and MORE_DATA bits in the released frames, 2049 * the EOSP (for uAPSD) and MORE_DATA bits in the released frames,
2050 * to help the @more_data paramter is passed to tell the driver if 2050 * to help the @more_data parameter is passed to tell the driver if
2051 * there is more data on other TIDs -- the TIDs to release frames 2051 * there is more data on other TIDs -- the TIDs to release frames
2052 * from are ignored since mac80211 doesn't know how many frames the 2052 * from are ignored since mac80211 doesn't know how many frames the
2053 * buffers for those TIDs contain. 2053 * buffers for those TIDs contain.
@@ -2592,7 +2592,7 @@ enum ieee80211_roc_type {
2592 * parameters. In the case where the driver buffers some frames for 2592 * parameters. In the case where the driver buffers some frames for
2593 * sleeping stations mac80211 will use this callback to tell the driver 2593 * sleeping stations mac80211 will use this callback to tell the driver
2594 * to release some frames, either for PS-poll or uAPSD. 2594 * to release some frames, either for PS-poll or uAPSD.
2595 * Note that if the @more_data paramter is %false the driver must check 2595 * Note that if the @more_data parameter is %false the driver must check
2596 * if there are more frames on the given TIDs, and if there are more than 2596 * if there are more frames on the given TIDs, and if there are more than
2597 * the frames being released then it must still set the more-data bit in 2597 * the frames being released then it must still set the more-data bit in
2598 * the frame. If the @more_data parameter is %true, then of course the 2598 * the frame. If the @more_data parameter is %true, then of course the
diff --git a/kernel/relay.c b/kernel/relay.c
index 5001c9887db1..52d6a6f56261 100644
--- a/kernel/relay.c
+++ b/kernel/relay.c
@@ -227,7 +227,7 @@ static void relay_destroy_buf(struct rchan_buf *buf)
227 * relay_remove_buf - remove a channel buffer 227 * relay_remove_buf - remove a channel buffer
228 * @kref: target kernel reference that contains the relay buffer 228 * @kref: target kernel reference that contains the relay buffer
229 * 229 *
230 * Removes the file from the fileystem, which also frees the 230 * Removes the file from the filesystem, which also frees the
231 * rchan_buf_struct and the channel buffer. Should only be called from 231 * rchan_buf_struct and the channel buffer. Should only be called from
232 * kref_put(). 232 * kref_put().
233 */ 233 */
diff --git a/kernel/signal.c b/kernel/signal.c
index 940b30ee9a30..f4812283c6e9 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -2382,7 +2382,7 @@ relock:
2382 * @regs: user register state 2382 * @regs: user register state
2383 * @stepping: nonzero if debugger single-step or block-step in use 2383 * @stepping: nonzero if debugger single-step or block-step in use
2384 * 2384 *
2385 * This function should be called when a signal has succesfully been 2385 * This function should be called when a signal has successfully been
2386 * delivered. It updates the blocked signals accordingly (@ka->sa.sa_mask 2386 * delivered. It updates the blocked signals accordingly (@ka->sa.sa_mask
2387 * is always blocked, and the signal itself is blocked unless %SA_NODEFER 2387 * is always blocked, and the signal itself is blocked unless %SA_NODEFER
2388 * is set in @ka->sa.sa_flags. Tracing is notified. 2388 * is set in @ka->sa.sa_flags. Tracing is notified.
diff --git a/net/core/dev.c b/net/core/dev.c
index d2b87dbbbb1a..70d2da3bfb0d 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3424,7 +3424,7 @@ out:
3424 * @rx_handler: receive handler to register 3424 * @rx_handler: receive handler to register
3425 * @rx_handler_data: data pointer that is used by rx handler 3425 * @rx_handler_data: data pointer that is used by rx handler
3426 * 3426 *
3427 * Register a receive hander for a device. This handler will then be 3427 * Register a receive handler for a device. This handler will then be
3428 * called from __netif_receive_skb. A negative errno code is returned 3428 * called from __netif_receive_skb. A negative errno code is returned
3429 * on a failure. 3429 * on a failure.
3430 * 3430 *