#endif
static struct console amiga_console_driver = {
- name: "debug",
- flags: CON_PRINTBUFFER,
- index: -1,
+ .name = "debug",
+ .flags = CON_PRINTBUFFER,
+ .index = -1,
};
#ifdef CONFIG_MAGIC_SYSRQ
static struct {
struct resource _ciab, _ciaa, _custom, _kickstart;
} mb_resources = {
- _ciab: { "CIA B", 0x00bfd000, 0x00bfdfff },
- _ciaa: { "CIA A", 0x00bfe000, 0x00bfefff },
- _custom: { "Custom I/O", 0x00dff000, 0x00dfffff },
- _kickstart: { "Kickstart ROM", 0x00f80000, 0x00ffffff }
+ ._ciab = { "CIA B", 0x00bfd000, 0x00bfdfff },
+ ._ciaa = { "CIA A", 0x00bfe000, 0x00bfefff },
+ ._custom = { "Custom I/O", 0x00dff000, 0x00dfffff },
+ ._kickstart = { "Kickstart ROM", 0x00f80000, 0x00ffffff }
};
static struct resource rtc_resource = {
int atari_SCC_reset_done = 0;
static struct console atari_console_driver = {
- name: "debug",
- flags: CON_PRINTBUFFER,
- index: -1,
+ .name = "debug",
+ .flags = CON_PRINTBUFFER,
+ .index = -1,
};
}
static struct pci_ops hades_pci_ops = {
- read_byte: hades_read_config_byte
- read_word: hades_read_config_word
- read_dword: hades_read_config_dword
- write_byte: hades_write_config_byte
- write_word: hades_write_config_word
- write_dword: hades_write_config_dword
+ .read_byte = hades_read_config_byte,
+ .read_word = hades_read_config_word,
+ .read_dword = hades_read_config_dword,
+ .write_byte = hades_write_config_byte,
+ .write_word = hades_write_config_word,
+ .write_dword = hades_write_config_dword
};
/*
}
struct file_operations atari_joystick_fops = {
- read: read_joystick,
- write: write_joystick,
- poll: joystick_poll,
- open: open_joystick,
- release: release_joystick,
+ .read = read_joystick,
+ .write = write_joystick,
+ .poll = joystick_poll,
+ .open = open_joystick,
+ .release = release_joystick,
};
int __init atari_joystick_init(void)
static struct block_device_operations stram_fops = {
- open: stram_open,
- release: stram_release,
+ .open = stram_open,
+ .release = stram_release,
};
int __init stram_device_init(void)
*/
static struct file_operations rtc_fops = {
- ioctl: rtc_ioctl,
- open: rtc_open,
- release: rtc_release,
+ .ioctl = rtc_ioctl,
+ .open = rtc_open,
+ .release = rtc_release,
};
static struct miscdevice rtc_dev=
{
}
struct seq_operations cpuinfo_op = {
- start: c_start,
- next: c_next,
- stop: c_stop,
- show: show_cpuinfo,
+ .start = c_start,
+ .next = c_next,
+ .stop = c_stop,
+ .show = show_cpuinfo,
};
int get_hardware_list(char *buffer)
static int scc_port = -1;
static struct console mac_console_driver = {
- name: "debug",
- flags: CON_PRINTBUFFER,
- index: -1,
+ .name = "debug",
+ .flags = CON_PRINTBUFFER,
+ .index = -1,
};
/*
*/
static struct file_operations rtc_fops = {
- ioctl: rtc_ioctl,
- open: rtc_open,
- release: rtc_release,
+ .ioctl = rtc_ioctl,
+ .open = rtc_open,
+ .release = rtc_release,
};
static struct miscdevice rtc_dev=
extern int ql_ticks;
static struct console q40_console_driver = {
- name: "debug",
- flags: CON_PRINTBUFFER,
- index: -1,
+ .name = "debug",
+ .flags = CON_PRINTBUFFER,
+ .index = -1,
};