-
-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[module] MODULE_IMPORT_NS now requires a string literal in 6.13
This is supported since kernel v5.10, no #if version required. Fixes: #1155 References: 33def8498fdde180023444b08e12b72a9efed41d
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,4 +70,5 @@ Zenithal <[email protected]> (ZenithalHourlyRate) | |
Kamplom <[email protected]> (kamplom) | ||
Jacob McNamee <[email protected]> (jacobmcnamee) | ||
Marco Antonio J. Costa <[email protected]> (majcosta) | ||
rs189 <[email protected]> (rs189) | ||
rs189 <[email protected]> (rs189) | ||
Jérôme Poulin <[email protected]> (ticpu) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -654,7 +654,7 @@ MODULE_DEVICE_TABLE(pci, kvmfr_pci_ids); | |
MODULE_LICENSE("GPL v2"); | ||
MODULE_AUTHOR("Geoffrey McRae <[email protected]>"); | ||
MODULE_AUTHOR("Guanzhong Chen <[email protected]>"); | ||
MODULE_VERSION("0.0.9"); | ||
MODULE_VERSION("0.0.12"); | ||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,16,0) | ||
MODULE_IMPORT_NS(DMA_BUF); | ||
MODULE_IMPORT_NS("DMA_BUF"); | ||
#endif |