Skip to content

Commit 00fd044

Browse files
committed
Correct bool variable type assignment to follow upstream
In response to below commit which was merged to upstream for v5.8 "PCI/switchtec: Correct bool variable type assignment" torvalds/linux@b8af854
1 parent 9c59804 commit 00fd044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

switchtec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static int max_devices = 16;
3636
module_param(max_devices, int, 0644);
3737
MODULE_PARM_DESC(max_devices, "max number of switchtec device instances");
3838

39-
static bool use_dma_mrpc = 1;
39+
static bool use_dma_mrpc = true;
4040
module_param(use_dma_mrpc, bool, 0644);
4141
MODULE_PARM_DESC(use_dma_mrpc,
4242
"Enable the use of the DMA MRPC feature");

0 commit comments

Comments
 (0)