Skip to content

Commit

Permalink
hw/block/fdc: Add description to floppy controllers
Browse files Browse the repository at this point in the history
Change the '-device help' output from:

  Storage devices:
  name "floppy", bus floppy-bus, desc "virtual floppy drive"
  name "isa-fdc", bus ISA

to:

  Storage devices:
  name "floppy", bus floppy-bus, desc "virtual floppy drive"
  name "isa-fdc", bus ISA, desc "virtual floppy controller"

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20210614193220.2007159-7-philmd@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
  • Loading branch information
philmd authored and jnsnow committed Jun 25, 2021
1 parent 1430759 commit 9362984
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions hw/block/fdc-isa.c
Expand Up @@ -282,6 +282,7 @@ static void isabus_fdc_class_init(ObjectClass *klass, void *data)
DeviceClass *dc = DEVICE_CLASS(klass);
ISADeviceClass *isa = ISA_DEVICE_CLASS(klass);

dc->desc = "virtual floppy controller";
dc->realize = isabus_fdc_realize;
dc->fw_name = "fdc";
dc->reset = fdctrl_external_reset_isa;
Expand Down
2 changes: 2 additions & 0 deletions hw/block/fdc-sysbus.c
Expand Up @@ -205,6 +205,7 @@ static void sysbus_fdc_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);

dc->desc = "virtual floppy controller";
device_class_set_props(dc, sysbus_fdc_properties);
}

Expand All @@ -230,6 +231,7 @@ static void sun4m_fdc_class_init(ObjectClass *klass, void *data)
DeviceClass *dc = DEVICE_CLASS(klass);

sbdc->use_strict_io = true;
dc->desc = "virtual floppy controller";
device_class_set_props(dc, sun4m_fdc_properties);
}

Expand Down

0 comments on commit 9362984

Please sign in to comment.