Skip to content

Commit a9b677f

Browse files
committed
generate-accessors: fix invalid KDoc banners
The banners are not kdoc documentation, so use normal comment style instead. Signed-off-by: Daniel Wagner <[email protected]>
1 parent 934abe1 commit a9b677f

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

libnvme/src/nvme/accessors-fabrics.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: LGPL-2.1-or-later
22

3-
/**
3+
/*
44
* This file is part of libnvme.
55
*
66
* Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.

libnvme/src/nvme/accessors-fabrics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* SPDX-License-Identifier: LGPL-2.1-or-later */
22

3-
/**
3+
/*
44
* This file is part of libnvme.
55
*
66
* Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.

libnvme/src/nvme/accessors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: LGPL-2.1-or-later
22

3-
/**
3+
/*
44
* This file is part of libnvme.
55
*
66
* Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.

libnvme/src/nvme/accessors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* SPDX-License-Identifier: LGPL-2.1-or-later */
22

3-
/**
3+
/*
44
* This file is part of libnvme.
55
*
66
* Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.

libnvme/tools/generator/generate-accessors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
SPDX_LD = "# SPDX-License-Identifier: LGPL-2.1-or-later"
7373

7474
BANNER = (
75-
"/**\n"
75+
"/*\n"
7676
" * This file is part of libnvme.\n"
7777
" *\n"
7878
" * Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.\n"
@@ -92,7 +92,7 @@
9292
)
9393

9494
LD_BANNER = (
95-
"/**\n"
95+
"/*\n"
9696
" * This file is part of libnvme.\n"
9797
" *\n"
9898
" * Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.\n"

0 commit comments

Comments
 (0)