Remove trailing whitespace.
This commit is contained in:
parent
5a0bb6ee01
commit
97d0c525ee
|
@ -20,7 +20,7 @@ int litex_sim_register_ext_module(struct ext_module_s *mod)
|
||||||
{
|
{
|
||||||
int ret=RC_OK;
|
int ret=RC_OK;
|
||||||
struct ext_module_list_s *ml=NULL;
|
struct ext_module_list_s *ml=NULL;
|
||||||
|
|
||||||
if(!mod)
|
if(!mod)
|
||||||
{
|
{
|
||||||
eprintf("Invalid arguments\n");
|
eprintf("Invalid arguments\n");
|
||||||
|
@ -81,7 +81,7 @@ int litex_sim_load_ext_modules(struct ext_module_list_s **mlist)
|
||||||
eprintf("Can't load library %s\n", libdylib_last_error());
|
eprintf("Can't load library %s\n", libdylib_last_error());
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!libdylib_find(lib, "litex_sim_ext_module_init"))
|
if(!libdylib_find(lib, "litex_sim_ext_module_init"))
|
||||||
{
|
{
|
||||||
ret = RC_ERROR;
|
ret = RC_ERROR;
|
||||||
|
|
|
@ -60,7 +60,7 @@ static int clocker_new(void **sess, char *args)
|
||||||
|
|
||||||
out:
|
out:
|
||||||
*sess=(void*)s;
|
*sess=(void*)s;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int clocker_add_pads(void *sess, struct pad_list_s *plist)
|
static int clocker_add_pads(void *sess, struct pad_list_s *plist)
|
||||||
|
@ -74,7 +74,7 @@ static int clocker_add_pads(void *sess, struct pad_list_s *plist)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
pads = plist->pads;
|
pads = plist->pads;
|
||||||
|
|
||||||
if(!strcmp(plist->name, "sys_clk")) {
|
if(!strcmp(plist->name, "sys_clk")) {
|
||||||
litex_sim_module_pads_get(pads, "sys_clk", (void**)&s->sys_clk);
|
litex_sim_module_pads_get(pads, "sys_clk", (void**)&s->sys_clk);
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,9 +97,9 @@ void read_handler(int fd, short event, void *arg)
|
||||||
struct session_s *s = (struct session_s*)arg;
|
struct session_s *s = (struct session_s*)arg;
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
ssize_t read_len;
|
ssize_t read_len;
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
read_len = read(fd, buffer, 1024);
|
read_len = read(fd, buffer, 1024);
|
||||||
for(i = 0; i < read_len; i++)
|
for(i = 0; i < read_len; i++)
|
||||||
{
|
{
|
||||||
|
@ -118,10 +118,10 @@ static void accept_conn_cb(struct evconnlistener *listener, evutil_socket_t fd,
|
||||||
{
|
{
|
||||||
struct session_s *s = (struct session_s*)ctx;
|
struct session_s *s = (struct session_s*)ctx;
|
||||||
struct timeval tv = {1, 0};
|
struct timeval tv = {1, 0};
|
||||||
|
|
||||||
s->fd = fd;
|
s->fd = fd;
|
||||||
s->ev = event_new(base, fd, EV_READ | EV_PERSIST , event_handler, s);
|
s->ev = event_new(base, fd, EV_READ | EV_PERSIST , event_handler, s);
|
||||||
event_add(s->ev, &tv);
|
event_add(s->ev, &tv);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -159,7 +159,7 @@ static int serial2tcp_new(void **sess, char *args)
|
||||||
fprintf(stderr, "Invalid port selected!\n");
|
fprintf(stderr, "Invalid port selected!\n");
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
s=(struct session_s*)malloc(sizeof(struct session_s));
|
s=(struct session_s*)malloc(sizeof(struct session_s));
|
||||||
if(!s) {
|
if(!s) {
|
||||||
ret = RC_NOENMEM;
|
ret = RC_NOENMEM;
|
||||||
|
@ -177,8 +177,8 @@ static int serial2tcp_new(void **sess, char *args)
|
||||||
eprintf("Can't bind port %d\n!\n", port);
|
eprintf("Can't bind port %d\n!\n", port);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
evconnlistener_set_error_cb(listener, accept_error_cb);
|
evconnlistener_set_error_cb(listener, accept_error_cb);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
*sess=(void*)s;
|
*sess=(void*)s;
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -202,19 +202,19 @@ static int serial2tcp_add_pads(void *sess, struct pad_list_s *plist)
|
||||||
litex_sim_module_pads_get(pads, "source_valid", (void**)&s->tx_valid);
|
litex_sim_module_pads_get(pads, "source_valid", (void**)&s->tx_valid);
|
||||||
litex_sim_module_pads_get(pads, "source_ready", (void**)&s->tx_ready);
|
litex_sim_module_pads_get(pads, "source_ready", (void**)&s->tx_ready);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!strcmp(plist->name, "sys_clk"))
|
if(!strcmp(plist->name, "sys_clk"))
|
||||||
litex_sim_module_pads_get(pads, "sys_clk", (void**)&s->sys_clk);
|
litex_sim_module_pads_get(pads, "sys_clk", (void**)&s->sys_clk);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
}
|
}
|
||||||
static int serial2tcp_tick(void *sess)
|
static int serial2tcp_tick(void *sess)
|
||||||
{
|
{
|
||||||
char c;
|
char c;
|
||||||
int ret = RC_OK;
|
int ret = RC_OK;
|
||||||
|
|
||||||
struct session_s *s = (struct session_s*)sess;
|
struct session_s *s = (struct session_s*)sess;
|
||||||
if(*s->sys_clk == 0)
|
if(*s->sys_clk == 0)
|
||||||
return RC_OK;
|
return RC_OK;
|
||||||
|
@ -228,7 +228,7 @@ static int serial2tcp_tick(void *sess)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*s->rx_valid=0;
|
*s->rx_valid=0;
|
||||||
if(s->datalen) {
|
if(s->datalen) {
|
||||||
*s->rx=s->databuf[s->data_start];
|
*s->rx=s->databuf[s->data_start];
|
||||||
|
@ -236,7 +236,7 @@ static int serial2tcp_tick(void *sess)
|
||||||
s->datalen--;
|
s->datalen--;
|
||||||
*s->rx_valid=1;
|
*s->rx_valid=1;
|
||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ int litex_sim_register_pads(struct pad_s *pads, char *interface_name, int index)
|
||||||
{
|
{
|
||||||
ret = RC_INVARG;
|
ret = RC_INVARG;
|
||||||
eprintf("Invalid argument\n");
|
eprintf("Invalid argument\n");
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
pl = (struct pad_list_s *)malloc(sizeof(struct pad_list_s));
|
pl = (struct pad_list_s *)malloc(sizeof(struct pad_list_s));
|
||||||
|
@ -36,7 +36,7 @@ int litex_sim_register_pads(struct pad_s *pads, char *interface_name, int index)
|
||||||
|
|
||||||
pl->next = padlist;
|
pl->next = padlist;
|
||||||
padlist = pl;
|
padlist = pl;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ int litex_sim_pads_get_list(struct pad_list_s **plist)
|
||||||
{
|
{
|
||||||
int ret=RC_OK;
|
int ret=RC_OK;
|
||||||
|
|
||||||
|
|
||||||
if(!plist)
|
if(!plist)
|
||||||
{
|
{
|
||||||
ret = RC_INVARG;
|
ret = RC_INVARG;
|
||||||
|
|
|
@ -99,7 +99,7 @@ static int json_to_interface_list(json_object *interface, struct interface_s **i
|
||||||
json_object *obj;
|
json_object *obj;
|
||||||
json_object *name;
|
json_object *name;
|
||||||
json_object *index;
|
json_object *index;
|
||||||
|
|
||||||
struct interface_s *t_iface=NULL;
|
struct interface_s *t_iface=NULL;
|
||||||
|
|
||||||
if(!interface || !iface)
|
if(!interface || !iface)
|
||||||
|
@ -108,7 +108,7 @@ static int json_to_interface_list(json_object *interface, struct interface_s **i
|
||||||
eprintf("Invalid argument\n");
|
eprintf("Invalid argument\n");
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!json_object_is_type(interface, json_type_array))
|
if(!json_object_is_type(interface, json_type_array))
|
||||||
{
|
{
|
||||||
ret=RC_JSERROR;
|
ret=RC_JSERROR;
|
||||||
|
@ -166,7 +166,7 @@ out:
|
||||||
|
|
||||||
static int module_list_free(struct module_s *mod)
|
static int module_list_free(struct module_s *mod)
|
||||||
{
|
{
|
||||||
int ret=RC_OK;
|
int ret=RC_OK;
|
||||||
struct module_s *mnext;
|
struct module_s *mnext;
|
||||||
int i;
|
int i;
|
||||||
while(mod)
|
while(mod)
|
||||||
|
@ -247,7 +247,7 @@ static int json_to_module_list(json_object *obj, struct module_s **mod)
|
||||||
|
|
||||||
tickfirst=NULL;
|
tickfirst=NULL;
|
||||||
json_object_object_get_ex(tobj, "tickfirst", &tickfirst);
|
json_object_object_get_ex(tobj, "tickfirst", &tickfirst);
|
||||||
|
|
||||||
|
|
||||||
if(m)
|
if(m)
|
||||||
{
|
{
|
||||||
|
@ -275,7 +275,7 @@ static int json_to_module_list(json_object *obj, struct module_s **mod)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
len = 0;
|
len = 0;
|
||||||
|
|
||||||
while(m->iface[len++].name);
|
while(m->iface[len++].name);
|
||||||
m->niface= len-1;
|
m->niface= len-1;
|
||||||
m->name = strdup(json_object_get_string(name));
|
m->name = strdup(json_object_get_string(name));
|
||||||
|
|
Loading…
Reference in New Issue