Skip to content

Commit

Permalink
copyright headers fixed + comments of #endif's in header files
Browse files Browse the repository at this point in the history
  • Loading branch information
skolelis committed Sep 9, 2024
1 parent dc7c98f commit fbb887e
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 17 deletions.
3 changes: 2 additions & 1 deletion app/src/app_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
#define ST_APP_MAX_TX_ANC_SESSIONS (180)
#define ST_APP_MAX_RX_ANC_SESSIONS (180)

#define ST_APP_MAX_TX_FMD_SESSIONS (180)
/* FMD = Fast Metadata (ST2110-41) */
#define ST_APP_MAX_TX_FMD_SESSIONS (180)
#define ST_APP_MAX_RX_FMD_SESSIONS (180)

#define ST_APP_MAX_LCORES (32)
Expand Down
2 changes: 1 addition & 1 deletion app/src/rx_fastmetadata_app.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include "rx_fastmetadata_app.h"
Expand Down
4 changes: 2 additions & 2 deletions app/src/rx_fastmetadata_app.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include <fcntl.h>
Expand All @@ -19,4 +19,4 @@ int st_app_rx_fmd_sessions_uinit(struct st_app_context* ctx);

int st_app_rx_fmd_sessions_result(struct st_app_context* ctx);

#endif
#endif /* _RX_APP_FMD_HEAD_H_ */
2 changes: 1 addition & 1 deletion app/src/tx_fastmetadata_app.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include "tx_fastmetadata_app.h"
Expand Down
4 changes: 2 additions & 2 deletions app/src/tx_fastmetadata_app.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include <fcntl.h>
Expand All @@ -16,4 +16,4 @@ int st_app_tx_fmd_sessions_init(struct st_app_context* ctx);

int st_app_tx_fmd_sessions_uinit(struct st_app_context* ctx);
int st_app_tx_fmd_sessions_stop(struct st_app_context* ctx);
#endif
#endif /* _TX_APP_FMD_HEAD_H_ */
4 changes: 2 additions & 2 deletions include/st41_api.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

/**
Expand Down Expand Up @@ -437,4 +437,4 @@ int st41_rx_get_queue_meta(st41_rx_handle handle, struct st_queue_meta* meta);
}
#endif

#endif
#endif /* _ST41_API_HEAD_H_ */
2 changes: 1 addition & 1 deletion lib/src/st2110/st_fastmetadata_transmitter.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include "st_fastmetadata_transmitter.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/src/st2110/st_fastmetadata_transmitter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#ifndef _ST_LIB_FASTMETADATA_TRANSMITTER_HEAD_H_
Expand Down
2 changes: 1 addition & 1 deletion lib/src/st2110/st_rx_fastmetadata_session.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include "st_rx_fastmetadata_session.h"
Expand Down
4 changes: 2 additions & 2 deletions lib/src/st2110/st_rx_fastmetadata_session.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#ifndef _ST_LIB_RX_FASTMETADATA_SESSION_HEAD_H_
Expand All @@ -13,4 +13,4 @@

int st_rx_fastmetadata_sessions_sch_uinit(struct mtl_sch_impl* sch);

#endif
#endif /* _ST_LIB_RX_FASTMETADATA_SESSION_HEAD_H_ */
2 changes: 1 addition & 1 deletion lib/src/st2110/st_tx_fastmetadata_session.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#include "st_tx_fastmetadata_session.h"
Expand Down
4 changes: 2 additions & 2 deletions lib/src/st2110/st_tx_fastmetadata_session.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
* SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation
*/

#ifndef _ST_LIB_TX_FASTMETADATA_SESSION_HEAD_H_
Expand All @@ -11,4 +11,4 @@

int st_tx_fastmetadata_sessions_sch_uinit(struct mtl_sch_impl* sch);

#endif
#endif /* _ST_LIB_TX_FASTMETADATA_SESSION_HEAD_H_ */

0 comments on commit fbb887e

Please sign in to comment.