In addition, do it in a single sentence instead of in two fragments.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
}
static struct clock_ops cmos = {
- "direct I/O instructions to ISA clock",
+ N_("Using direct I/O instructions to ISA clock."),
get_permissions_cmos,
read_hardware_clock_cmos,
set_hardware_clock_cmos,
}
static struct clock_ops kd = {
- "KDGHWCLK interface to m68k clock",
+ N_("Using the KDGHWCLK interface to m68k clock."),
get_permissions_kd,
read_hardware_clock_kd,
set_hardware_clock_kd,
}
static struct clock_ops rtc = {
- "/dev interface to clock",
+ N_("Using the /dev interface to the clock."),
get_permissions_rtc,
read_hardware_clock_rtc,
set_hardware_clock_rtc,
if (debug) {
if (ur)
- printf(_("Using %s.\n"), ur->interface_name);
+ puts(_(ur->interface_name));
else
printf(_("No usable clock interface found.\n"));
}