forked from Miroirs/x49gp
missing include + style
This commit is contained in:
parent
0041e7546c
commit
3e3a7a5caa
1 changed files with 7 additions and 11 deletions
18
src/module.c
18
src/module.c
|
@ -9,6 +9,7 @@
|
|||
#include <sys/mman.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "list.h"
|
||||
#include "x49gp.h"
|
||||
|
||||
int x49gp_modules_init( x49gp_t* x49gp )
|
||||
|
@ -25,10 +26,9 @@ int x49gp_modules_init( x49gp_t* x49gp )
|
|||
list_for_each_entry( module, &x49gp->modules, list )
|
||||
{
|
||||
error = module->init( module );
|
||||
if ( error ) {
|
||||
if ( error )
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
phys_ram_base = mmap( 0, phys_ram_size, PROT_NONE, MAP_SHARED | MAP_ANON, -1, 0 );
|
||||
if ( phys_ram_base == ( uint8_t* )-1 ) {
|
||||
|
@ -61,10 +61,9 @@ int x49gp_modules_exit( x49gp_t* x49gp )
|
|||
list_for_each_entry_safe_reverse( module, next, &x49gp->modules, list )
|
||||
{
|
||||
error = module->exit( module );
|
||||
if ( error ) {
|
||||
if ( error )
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -81,10 +80,9 @@ int x49gp_modules_reset( x49gp_t* x49gp, x49gp_reset_t reset )
|
|||
list_for_each_entry( module, &x49gp->modules, list )
|
||||
{
|
||||
error = module->reset( module, reset );
|
||||
if ( error ) {
|
||||
if ( error )
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -124,13 +122,12 @@ int x49gp_modules_load( x49gp_t* x49gp, const char* filename )
|
|||
{
|
||||
error = module->load( module, x49gp->config );
|
||||
if ( error ) {
|
||||
if ( error == -EAGAIN ) {
|
||||
if ( error == -EAGAIN )
|
||||
result = -EAGAIN;
|
||||
} else {
|
||||
else
|
||||
return error;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
extern unsigned char* phys_ram_base;
|
||||
|
@ -161,10 +158,9 @@ int x49gp_modules_save( x49gp_t* x49gp, const char* filename )
|
|||
list_for_each_entry( module, &x49gp->modules, list )
|
||||
{
|
||||
error = module->save( module, x49gp->config );
|
||||
if ( error ) {
|
||||
if ( error )
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
data = g_key_file_to_data( x49gp->config, &length, &gerror );
|
||||
if ( NULL == data ) {
|
||||
|
|
Loading…
Reference in a new issue