You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits)
b43: fix comment typo reqest -> request
Haavard Skinnemoen has left Atmel
cris: typo in mach-fs Makefile
Kconfig: fix copy/paste-ism for dell-wmi-aio driver
doc: timers-howto: fix a typo ("unsgined")
perf: Only include annotate.h once in tools/perf/util/ui/browsers/annotate.c
md, raid5: Fix spelling error in comment ('Ofcourse' --> 'Of course').
treewide: fix a few typos in comments
regulator: change debug statement be consistent with the style of the rest
Revert "arm: mach-u300/gpio: Fix mem_region resource size miscalculations"
audit: acquire creds selectively to reduce atomic op overhead
rtlwifi: don't touch with treewide double semicolon removal
treewide: cleanup continuations and remove logging message whitespace
ath9k_hw: don't touch with treewide double semicolon removal
include/linux/leds-regulator.h: fix syntax in example code
tty: fix typo in descripton of tty_termios_encode_baud_rate
xtensa: remove obsolete BKL kernel option from defconfig
m68k: fix comment typo 'occcured'
arch:Kconfig.locks Remove unused config option.
treewide: remove extra semicolons
...
This commit is contained in:
@@ -83,19 +83,18 @@ MODULE_VERSION(my_VERSION);
|
||||
|
||||
static int mpt_msi_enable_spi;
|
||||
module_param(mpt_msi_enable_spi, int, 0);
|
||||
MODULE_PARM_DESC(mpt_msi_enable_spi, " Enable MSI Support for SPI \
|
||||
controllers (default=0)");
|
||||
MODULE_PARM_DESC(mpt_msi_enable_spi,
|
||||
" Enable MSI Support for SPI controllers (default=0)");
|
||||
|
||||
static int mpt_msi_enable_fc;
|
||||
module_param(mpt_msi_enable_fc, int, 0);
|
||||
MODULE_PARM_DESC(mpt_msi_enable_fc, " Enable MSI Support for FC \
|
||||
controllers (default=0)");
|
||||
MODULE_PARM_DESC(mpt_msi_enable_fc,
|
||||
" Enable MSI Support for FC controllers (default=0)");
|
||||
|
||||
static int mpt_msi_enable_sas;
|
||||
module_param(mpt_msi_enable_sas, int, 0);
|
||||
MODULE_PARM_DESC(mpt_msi_enable_sas, " Enable MSI Support for SAS \
|
||||
controllers (default=0)");
|
||||
|
||||
MODULE_PARM_DESC(mpt_msi_enable_sas,
|
||||
" Enable MSI Support for SAS controllers (default=0)");
|
||||
|
||||
static int mpt_channel_mapping;
|
||||
module_param(mpt_channel_mapping, int, 0);
|
||||
@@ -105,15 +104,14 @@ static int mpt_debug_level;
|
||||
static int mpt_set_debug_level(const char *val, struct kernel_param *kp);
|
||||
module_param_call(mpt_debug_level, mpt_set_debug_level, param_get_int,
|
||||
&mpt_debug_level, 0600);
|
||||
MODULE_PARM_DESC(mpt_debug_level, " debug level - refer to mptdebug.h \
|
||||
- (default=0)");
|
||||
MODULE_PARM_DESC(mpt_debug_level,
|
||||
" debug level - refer to mptdebug.h - (default=0)");
|
||||
|
||||
int mpt_fwfault_debug;
|
||||
EXPORT_SYMBOL(mpt_fwfault_debug);
|
||||
module_param(mpt_fwfault_debug, int, 0600);
|
||||
MODULE_PARM_DESC(mpt_fwfault_debug, "Enable detection of Firmware fault"
|
||||
" and halt Firmware on fault - (default=0)");
|
||||
|
||||
MODULE_PARM_DESC(mpt_fwfault_debug,
|
||||
"Enable detection of Firmware fault and halt Firmware on fault - (default=0)");
|
||||
|
||||
static char MptCallbacksName[MPT_MAX_PROTOCOL_DRIVERS][50];
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ V. Getting Logical Configuration Table
|
||||
ENOBUFS Buffer not large enough. If this occurs, the required
|
||||
buffer length is written into *(lct->reslen)
|
||||
|
||||
VI. Settting Parameters
|
||||
VI. Setting Parameters
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
|
||||
Reference in New Issue
Block a user