
From: Marek Vasut marex@pollux.denx.de
As the "buf" is cleared at runtime, this might introduce a slight overhead.
Signed-off-by: Marek Vasut marex@pollux.denx.de --- drivers/pcmcia/i82365.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
Q: Can this be squashed into char buf[200] = {0}; ? That'd help the optimization to remove the overhead altogether again.
diff --git a/drivers/pcmcia/i82365.c b/drivers/pcmcia/i82365.c index 1bcb3a5..968d35a 100644 --- a/drivers/pcmcia/i82365.c +++ b/drivers/pcmcia/i82365.c @@ -272,11 +272,9 @@ static u_int cirrus_set_opts (socket_info_t * s) { cirrus_state_t *p = &s->c_state; u_int mask = 0xffff; -#if DEBUG char buf[200];
memset (buf, 0, 200); -#endif
if (has_ring == -1) has_ring = 1;