Skip to content

Commit 69c1fd9

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
Pull trivial tree updates from Jiri Kosina: "My attempt to revitalize trivial queue I've been neglecting for years (what a disaster that was for this world, right? :) ) with patches collected from backlog that were still relevant and not applied elsewhere in the meantime" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: err.h: remove deprecated PTR_RET for good blk-mq: Fix typo in comment x86/boot: Fix comment spelling sh: mach-highlander: Fix comment spelling s390/dasd: Fix comment spelling mfd: wm8994: Fix comment spelling docs: Add reference in binfmt-misc.rst genirq: fix kerneldoc comment for irq_desc drm/amdgpu: fix two documentation mismatch issues HID: fix Kconfig word ordering list/hashtable: minor documentation corrections.
2 parents 72f3542 + fad7c90 commit 69c1fd9

File tree

12 files changed

+15
-18
lines changed

12 files changed

+15
-18
lines changed

Documentation/admin-guide/binfmt-misc.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ Hints
140140
-----
141141

142142
If you want to pass special arguments to your interpreter, you can
143-
write a wrapper script for it. See Documentation/admin-guide/java.rst for an
144-
example.
143+
write a wrapper script for it.
144+
See :doc:`Documentation/admin-guide/java.rst <./java>` for an example.
145145

146146
Your interpreter should NOT look in the PATH for the filename; the kernel
147147
passes it the full filename (or the file descriptor) to use. Using ``$PATH`` can

arch/sh/include/mach-common/mach/highlander.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define PA_IRLPRI4 (PA_BCR+0x000a) /* Interrupt Priorty 4 */
1919
#define PA_RSTCTL (PA_BCR+0x000c) /* Reset Control */
2020
#define PA_PCIBD (PA_BCR+0x000e) /* PCI Board detect control */
21-
#define PA_PCICD (PA_BCR+0x0010) /* PCI Conector detect control */
21+
#define PA_PCICD (PA_BCR+0x0010) /* PCI Connector detect control */
2222
#define PA_EXTGIO (PA_BCR+0x0016) /* Extension GPIO Control */
2323
#define PA_IVDRMON (PA_BCR+0x0018) /* iVDR Moniter control */
2424
#define PA_IVDRCTL (PA_BCR+0x001a) /* iVDR control */
@@ -80,7 +80,7 @@
8080
#define PA_SDPOW (PA_BCR+0x0004) /* SD Power control */
8181
#define PA_RSTCTL (PA_BCR+0x0006) /* Device Reset control */
8282
#define PA_PCIBD (PA_BCR+0x0008) /* PCI Board detect control */
83-
#define PA_PCICD (PA_BCR+0x000a) /* PCI Conector detect control */
83+
#define PA_PCICD (PA_BCR+0x000a) /* PCI Connector detect control */
8484
#define PA_ZIGIO1 (PA_BCR+0x000c) /* Zigbee IO control 1 */
8585
#define PA_ZIGIO2 (PA_BCR+0x000e) /* Zigbee IO control 2 */
8686
#define PA_ZIGIO3 (PA_BCR+0x0010) /* Zigbee IO control 3 */

arch/x86/boot/apm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ int query_apm_bios(void)
6060
intcall(0x15, &ireg, &oreg);
6161

6262
if ((oreg.eflags & X86_EFLAGS_CF) || oreg.bx != 0x504d) {
63-
/* Failure with 32-bit connect, try to disconect and ignore */
63+
/* Failure with 32-bit connect, try to disconnect and ignore */
6464
ireg.al = 0x04;
6565
intcall(0x15, &ireg, NULL);
6666
return -1;

block/blk-mq-virtio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @first_vec: first interrupt vectors to use for queues (usually 0)
1717
*
1818
* This function assumes the virtio device @vdev has at least as many available
19-
* interrupt vetors as @set has queues. It will then queuery the vector
19+
* interrupt vectors as @set has queues. It will then query the vector
2020
* corresponding to each queue for it's affinity mask and built queue mapping
2121
* that maps a queue to the CPUs that have irq affinity for the corresponding
2222
* vector.

drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ static uint64_t sdma_v4_0_ring_get_wptr(struct amdgpu_ring *ring)
677677
}
678678

679679
/**
680-
* sdma_v4_0_ring_set_wptr - commit the write pointer
680+
* sdma_v4_0_page_ring_set_wptr - commit the write pointer
681681
*
682682
* @ring: amdgpu ring pointer
683683
*
@@ -977,7 +977,7 @@ static void sdma_v4_0_page_stop(struct amdgpu_device *adev)
977977
}
978978

979979
/**
980-
* sdma_v_0_ctx_switch_enable - stop the async dma engines context switch
980+
* sdma_v4_0_ctx_switch_enable - stop the async dma engines context switch
981981
*
982982
* @adev: amdgpu_device pointer
983983
* @enable: enable/disable the DMA MEs context switch.

drivers/hid/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ config HID_U2FZERO
10391039

10401040
U2F Zero only supports blinking its LED, so this driver doesn't
10411041
allow setting the brightness to anything but 1, which will
1042-
trigger a single blink and immediately reset to back 0.
1042+
trigger a single blink and immediately reset back to 0.
10431043

10441044
config HID_WACOM
10451045
tristate "Wacom Intuos/Graphire tablet support (USB)"

drivers/s390/block/dasd_3990_erp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1987,7 +1987,7 @@ dasd_3990_erp_compound_code(struct dasd_ccw_req * erp, char *sense)
19871987
* DASD_3990_ERP_COMPOUND_CONFIG
19881988
*
19891989
* DESCRIPTION
1990-
* Handles the compound ERP action for configruation
1990+
* Handles the compound ERP action for configuration
19911991
* dependent error.
19921992
* Note: duplex handling is not implemented (yet).
19931993
*

include/linux/err.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
6262
return 0;
6363
}
6464

65-
/* Deprecated */
66-
#define PTR_RET(p) PTR_ERR_OR_ZERO(p)
67-
6865
#endif
6966

7067
#endif /* _LINUX_ERR_H */

include/linux/hashtable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ static inline void hash_del_rcu(struct hlist_node *node)
145145
* hash entry
146146
* @name: hashtable to iterate
147147
* @bkt: integer to use as bucket loop cursor
148-
* @tmp: a &struct used for temporary storage
148+
* @tmp: a &struct hlist_node used for temporary storage
149149
* @obj: the type * to use as a loop cursor for each entry
150150
* @member: the name of the hlist_node within the struct
151151
*/
@@ -197,7 +197,7 @@ static inline void hash_del_rcu(struct hlist_node *node)
197197
* same bucket safe against removals
198198
* @name: hashtable to iterate
199199
* @obj: the type * to use as a loop cursor for each entry
200-
* @tmp: a &struct used for temporary storage
200+
* @tmp: a &struct hlist_node used for temporary storage
201201
* @member: the name of the hlist_node within the struct
202202
* @key: the key of the objects to iterate over
203203
*/

include/linux/irqdesc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ struct pt_regs;
2424
* @handle_irq: highlevel irq-events handler
2525
* @preflow_handler: handler called before the flow handler (currently used by sparc)
2626
* @action: the irq action chain
27-
* @status: status information
27+
* @status_use_accessors: status information
2828
* @core_internal_state__do_not_mess_with_it: core internal status information
2929
* @depth: disable-depth, for nested irq_disable() calls
3030
* @wake_depth: enable depth, for multiple irq_set_irq_wake() callers

0 commit comments

Comments
 (0)