Re: [2.5.67] gen_rtc compile error

Andreas Schwab (schwab@suse.de)
Tue, 08 Apr 2003 21:40:43 +0200


Michael Buesch <freesoftwaredeveloper@web.de> writes:

|> Correcting my patch: ;)

Still not right.

|> --- drivers/char/genrtc.c.orig 2003-04-08 21:15:52.000000000 +0200
|> +++ drivers/char/genrtc.c 2003-04-08 21:28:43.000000000 +0200
|> @@ -486,16 +486,21 @@
|> "update_IRQ\t: %s\n"
|> "periodic_IRQ\t: %s\n"
|> "periodic_freq\t: %ld\n"
|> - "batt_status\t: %s\n",
|> - (flags & RTC_DST_EN) ? "yes" : "no",
|> +#ifdef RTC_BATT_BAD
|> + "batt_status\t: %s\n"
|> +#endif
|> + ,(flags & RTC_DST_EN) ? "yes" : "no",
|> (flags & RTC_DM_BINARY) ? "no" : "yes",
|> (flags & RTC_24H) ? "yes" : "no",
|> (flags & RTC_SQWE) ? "yes" : "no",
|> (flags & RTC_AIE) ? "yes" : "no",
|> irq_active ? "yes" : "no",
|> (flags & RTC_PIE) ? "yes" : "no",
|> - 0L /* freq */,
|> - (flags & RTC_BATT_BAD) ? "bad" : "okay");
|> + 0L /* freq */
|> +#ifdef RTC_BATT_BAD
|> + ,(flags & RTC_BATT_BAD) ? "bad" : "okay")
|> +#endif
|> + ;

Lacks a close paren if !RTC_BATT_BAD.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/