Skip to content

Commit 2be5bce

Browse files
committed
crc32: add spdx license tag
The crc.[ch] are missing the spdx tag. Signed-off-by: Daniel Wagner <[email protected]>
1 parent 1ca0319 commit 2be5bce

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

libnvme/src/nvme/crc32.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: LicenseRef-Gary-S-Brown-CRC32
12
/*
23
* COPYRIGHT (C) 1986 Gary S. Brown. You may use this program, or
34
* code or tables extracted from it, as desired without restriction.

libnvme/src/nvme/crc32.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
#ifndef crc32_H
2-
#define crc32_H
1+
// SPDX-License-Identifier: LicenseRef-Gary-S-Brown-CRC32
2+
/*
3+
* This file is part of libnvme.
4+
*/
5+
#pragma once
36

47
#include <stdint.h>
58
#include <stddef.h>
69

710
uint32_t crc32(uint32_t crc, const void *buf, size_t len);
8-
9-
#endif

0 commit comments

Comments
 (0)