printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / io_uring / net.h
blobb58f39fed4d5397068c0070355b4ec130477ec3f
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _LINUX_IO_URING_NET_H
3 #define _LINUX_IO_URING_NET_H
5 struct io_uring_cmd;
7 #if defined(CONFIG_IO_URING)
8 int io_uring_cmd_sock(struct io_uring_cmd *cmd, unsigned int issue_flags);
10 #else
11 static inline int io_uring_cmd_sock(struct io_uring_cmd *cmd,
12 unsigned int issue_flags)
14 return -EOPNOTSUPP;
16 #endif
18 #endif