gen_idt: Fix issues found by checkpatch

Change-Id: Ib486d8453c16c093dd188cd9e84c1eb2282ab746
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
Peter Mitsis 2015-10-05 16:07:10 -04:00 committed by Anas Nashif
commit ad76795063

View file

@ -77,19 +77,19 @@
#endif
static void get_exec_name(char *pathname);
static void usage(const int len);
static void usage(int len);
static void get_options(int argc, char *argv[]);
static void open_files(void);
static void close_files(void);
static void genIdt(void);
static void clean_exit(const int exit_code);
static void clean_exit(int exit_code);
typedef struct s_isrList {
struct s_isrList {
void *fnc;
unsigned int dpl;
} ISR_LIST;
};
static ISR_LIST idt[256];
static struct s_isrList idt[256];
enum {
IFILE = 0, /* input file */
@ -103,14 +103,14 @@ enum { SHORT_USAGE, LONG_USAGE };
static int fds[NUSERFILES] = {-1, -1};
static char *filenames[NFILES];
static unsigned int numVecs = (unsigned int)-1;
static struct version version = {KERNEL_VERSION, 1, 1, 0};
static struct version version = {KERNEL_VERSION, 1, 1, 1};
int main(int argc, char *argv[])
{
get_exec_name(argv[0]);
get_options(argc, argv); /* may exit */
open_files(); /* may exit */
genIdt();
genIdt(); /* may exit */
close_files();
return 0;
}
@ -188,12 +188,15 @@ static void open_files(void)
int ii;
fds[IFILE] = open(filenames[IFILE], O_RDONLY | O_BINARY);
fds[OFILE] = open(filenames[OFILE], O_WRONLY|O_CREAT|O_TRUNC|O_BINARY,
fds[OFILE] = open(filenames[OFILE], O_WRONLY | O_CREAT |
O_TRUNC | O_BINARY,
S_IWUSR | S_IRUSR);
for (ii = 0; ii < NUSERFILES; ii++) {
int invalid = fds[ii] == -1;
if (invalid) {
char *invalid = filenames[ii];
fprintf(stderr, "invalid file %s\n", invalid);
for (--ii; ii >= 0; ii--) {
close(fds[ii]);
@ -246,8 +249,10 @@ static void genIdt(void)
PRINTF("There are %d ISR(s)\n", size);
if (size > numVecs) {
fprintf(stderr, "Too many ISRs found. Got %u. Expected less than %u."
" Malformed input file?\n", size, numVecs);
fprintf(stderr,
"Too many ISRs found. Got %u. Expected less than %u.\n"
"Malformed input file?\n",
size, numVecs);
clean_exit(-1);
}
@ -290,7 +295,8 @@ static void genIdt(void)
return;
readError:
fprintf(stderr, "Error occurred while reading input file. Aborting...\n");
fprintf(stderr,
"Error occurred while reading input file. Aborting...\n");
clean_exit(-1);
}
@ -303,13 +309,13 @@ static void close_files(void)
}
}
static void clean_exit(const int exit_code)
static void clean_exit(int exit_code)
{
close_files();
exit(exit_code);
}
static void usage(const int len)
static void usage(int len)
{
fprintf(stderr, "\n%s -i <input file> -n <n>\n", filenames[EXECFILE]);