Date: Mon, 5 Apr 2021 20:30:08 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 843d16436d33 - main - qat: Make prototypes consistent with the implementation Message-ID: <202104052030.135KU8T4082660@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=843d16436d3388c1b46d37fca4e86885612d0e64 commit 843d16436d3388c1b46d37fca4e86885612d0e64 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2021-04-05 20:23:22 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2021-04-05 20:30:00 +0000 qat: Make prototypes consistent with the implementation Sponsored by: The FreeBSD Foundation MFC after: 1 week --- sys/dev/qat/qat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/qat/qat.c b/sys/dev/qat/qat.c index acfe0c6a1e07..49cb408fd702 100644 --- a/sys/dev/qat/qat.c +++ b/sys/dev/qat/qat.c @@ -276,8 +276,8 @@ static const struct qat_sym_hash_def qat_sym_hash_defs[] = { static const struct qat_product *qat_lookup(device_t); static int qat_probe(device_t); static int qat_attach(device_t); -static int qat_init(struct device *); -static int qat_start(struct device *); +static int qat_init(device_t); +static int qat_start(device_t); static int qat_detach(device_t); static int qat_newsession(device_t dev, crypto_session_t cses,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104052030.135KU8T4082660>