[PATCH 428] MVME16x RTC const
From: Geert Uytterhoeven
Date: Tue Apr 13 2004 - 03:59:24 EST
MVME16x RTC: Make days_in_mo[] const
--- linux-2.6.5-rc2/arch/m68k/mvme16x/rtc.c 2004-01-21 22:03:13.000000000 +0100
+++ linux-m68k-2.6.5-rc2/arch/m68k/mvme16x/rtc.c 2004-03-28 11:58:40.000000000 +0200
@@ -33,7 +33,7 @@
#define BCD2BIN(val) (((val)&15) + ((val)>>4)*10)
#define BIN2BCD(val) ((((val)/10)<<4) + (val)%10)
-static unsigned char days_in_mo[] =
+static const unsigned char days_in_mo[] =
{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
static atomic_t rtc_ready = ATOMIC_INIT(1);
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/