https://github.com/torvalds/linux
Revision 2bbb486162c4ace673ea423bbd7e7b40f020ad45 authored by Isak Ellmer on 01 June 2022, 13:08:19 UTC, committed by Masahiro Yamada on 04 June 2022, 21:20:57 UTC
Make nconfig accept jk keybindings for movement in addition to arrow
keys.

Signed-off-by: Isak Ellmer <isak01@gmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
1 parent a89227d
Raw File
Tip revision: 2bbb486162c4ace673ea423bbd7e7b40f020ad45 authored by Isak Ellmer on 01 June 2022, 13:08:19 UTC
scripts: kconfig: nconf: make nconfig accept jk keybindings
Tip revision: 2bbb486
blk-ioprio.h
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef _BLK_IOPRIO_H_
#define _BLK_IOPRIO_H_

#include <linux/kconfig.h>

struct request_queue;

#ifdef CONFIG_BLK_CGROUP_IOPRIO
int blk_ioprio_init(struct request_queue *q);
#else
static inline int blk_ioprio_init(struct request_queue *q)
{
	return 0;
}
#endif

#endif /* _BLK_IOPRIO_H_ */
back to top