-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There a plenty of includes which are not necessary. Remove them. Signed-off-by: Daniel Wagner <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,31 +2,13 @@ | |
/* | ||
* Copyright (c) Micron, Inc 2024. | ||
* | ||
* @file: micron-utils.h | ||
* @file: utils.h | ||
* @brief: This module contains all the utilities needed for other modules. | ||
* @author: Chaithanya Shoba <[email protected]> | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <string.h> | ||
#include <ctype.h> | ||
#include <stdlib.h> | ||
#include <errno.h> | ||
#include <fcntl.h> | ||
#include <unistd.h> | ||
#include <time.h> | ||
#include <string.h> | ||
#include <libgen.h> | ||
#include <stddef.h> | ||
#include <sys/types.h> | ||
#include <sys/stat.h> | ||
#include "common.h" | ||
#include "nvme.h" | ||
#include "libnvme.h" | ||
#include <limits.h> | ||
#include "linux/types.h" | ||
#include "nvme-print.h" | ||
#include "util/cleanup.h" | ||
|
||
/*Request data format*/ | ||
struct __packed request_data { | ||
|