Skip to content

Commit

Permalink
sim: m68hc11: fix up various prototype related warnings
Browse files Browse the repository at this point in the history
A few funcs are only used locally, so mark them static to avoid warnings
due to -Wmissing-prototypes.

Some funcs cast the return value wrong, so drop them (and let void * just
work by default).

Update some prototypes to be new style.
  • Loading branch information
vapier committed Aug 14, 2016
1 parent 4c171e2 commit 527aaa4
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 12 deletions.
17 changes: 17 additions & 0 deletions sim/m68hc11/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2016-08-13 Mike Frysinger <[email protected]>

* dv-m68hc11eepr.c (attach_m68hc11eepr_regs): Drop cast with
return value of hw_malloc.
* dv-m68hc11sio.c (m68hc11sio_rx_poll): Mark static.
(m68hc11sio_tx_poll): Likewise.
* dv-m68hc11spi.c (m68hc11spi_clock): Likewise.
* dv-m68hc11tim.c (m68hc11tim_timer_event): Likewise.
* dv-nvram.c (attach_nvram_regs): Drop cast with
return value of hw_malloc.
* emulos.c (emul_bench): Mark static.
(emul_write): Likewise.
(emul_exit): Likewise.
* gencode.c: Include stdio.h.
(gen_function_entry): Unify two print lines.
(cmp_opcode): Mark args const.

2016-01-10 Mike Frysinger <[email protected]>

* config.in, configure: Regenerate.
Expand Down
2 changes: 1 addition & 1 deletion sim/m68hc11/dv-m68hc11eepr.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ attach_m68hc11eepr_regs (struct hw *me,

controller->attach_space = attach_space;
controller->base_address = attach_address;
controller->eeprom = (char*) hw_malloc (me, attach_size + 1);
controller->eeprom = hw_malloc (me, attach_size + 1);
controller->eeprom_min_cycles = 10000;
controller->size = attach_size + 1;
controller->mapped = 0;
Expand Down
4 changes: 2 additions & 2 deletions sim/m68hc11/dv-m68hc11sio.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ m68hc11sio_port_event (struct hw *me,
}


void
static void
m68hc11sio_rx_poll (struct hw *me, void *data)
{
SIM_DESC sd;
Expand Down Expand Up @@ -313,7 +313,7 @@ m68hc11sio_rx_poll (struct hw *me, void *data)
}


void
static void
m68hc11sio_tx_poll (struct hw *me, void *data)
{
SIM_DESC sd;
Expand Down
2 changes: 1 addition & 1 deletion sim/m68hc11/dv-m68hc11spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ set_bit_port (struct hw *me, sim_cpu *cpu, int port, int mask, int value)
#define SPI_START_BIT 1
#define SPI_MIDDLE_BIT 2

void
static void
m68hc11spi_clock (struct hw *me, void *data)
{
SIM_DESC sd;
Expand Down
2 changes: 1 addition & 1 deletion sim/m68hc11/dv-m68hc11tim.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ enum event_type
COMPARE_EVENT
};

void
static void
m68hc11tim_timer_event (struct hw *me, void *data)
{
SIM_DESC sd;
Expand Down
2 changes: 1 addition & 1 deletion sim/m68hc11/dv-nvram.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ attach_nvram_regs (struct hw *me, struct nvram *controller)

case NVRAM_SAVE_MODIFIED:
case NVRAM_SAVE_ALL:
controller->data = (char*) hw_malloc (me, attach_size);
controller->data = hw_malloc (me, attach_size);
if (controller->data == 0)
hw_abort (me, "Not enough memory, try to use the mode 'map'");

Expand Down
6 changes: 3 additions & 3 deletions sim/m68hc11/emulos.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static int bench_mode = -1;
static struct timeval bench_start;
static struct timeval bench_stop;

void
static void
emul_bench (struct _sim_cpu* cpu)
{
int op;
Expand Down Expand Up @@ -90,7 +90,7 @@ emul_bench (struct _sim_cpu* cpu)
}
#endif

void
static void
emul_write(struct _sim_cpu* state)
{
int addr = cpu_get_x (state) & 0x0FFFF;
Expand All @@ -115,7 +115,7 @@ emul_write(struct _sim_cpu* state)
But doing an exit () on a real target is really a non-sense.
exit () is important for the validation of GCC. The exit status
is passed in 'D' register. */
void
static void
emul_exit (sim_cpu *cpu)
{
sim_engine_halt (CPU_STATE (cpu), cpu,
Expand Down
6 changes: 3 additions & 3 deletions sim/m68hc11/gencode.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <errno.h>
Expand Down Expand Up @@ -1987,8 +1988,7 @@ void
gen_function_entry (FILE *fp, const char *name, int locals)
{
/* Generate interpretor entry point. */
print (fp, 0, "%s (proc)\n", name);
print (fp, indent_level, "struct _sim_cpu* proc;");
print (fp, 0, "%s (sim_cpu *proc)\n", name);
print (fp, indent_level, "{\n");

/* Interpretor local variables. */
Expand All @@ -2007,7 +2007,7 @@ gen_function_close (FILE *fp)
}

int
cmp_opcode (void* e1, void* e2)
cmp_opcode (const void *e1, const void *e2)
{
struct m6811_opcode_def* op1 = (struct m6811_opcode_def*) e1;
struct m6811_opcode_def* op2 = (struct m6811_opcode_def*) e2;
Expand Down

0 comments on commit 527aaa4

Please sign in to comment.