diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2020-06-04 20:59:13 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2020-06-04 20:59:13 +0300 |
commit | 0085090d7d5844e4ddedc612bd65939ce043c18f (patch) | |
tree | 1038b2c356f439c9b3f4fce078d069a932d706de /drivers/pci | |
parent | b16666b853597531a798f57e7cb38d510c9e6efd (diff) | |
parent | b8af85492fbf1acfb63b1f83e4faafbaa11c73eb (diff) | |
download | linux-0085090d7d5844e4ddedc612bd65939ce043c18f.tar.xz |
Merge branch 'pci/switchtec'
- Fix a minor bool type issue (Krzysztof Wilczynski)
* pci/switchtec:
PCI/switchtec: Correct bool variable type assignment
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/switch/switchtec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/switch/switchtec.c b/drivers/pci/switch/switchtec.c index e69cac84b605..850cfeb74608 100644 --- a/drivers/pci/switch/switchtec.c +++ b/drivers/pci/switch/switchtec.c @@ -25,7 +25,7 @@ static int max_devices = 16; module_param(max_devices, int, 0644); MODULE_PARM_DESC(max_devices, "max number of switchtec device instances"); -static bool use_dma_mrpc = 1; +static bool use_dma_mrpc = true; module_param(use_dma_mrpc, bool, 0644); MODULE_PARM_DESC(use_dma_mrpc, "Enable the use of the DMA MRPC feature"); |