Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/infrastructure/rootpc/rootpc.c

    r230385c rd9cf684a  
    7777};
    7878
    79 static hw_resource_t pci_conf_regs[] = {
    80         {
    81                 .type = IO_RANGE,
    82                 .res.io_range = {
    83                         .address = 0xCF8,
    84                         .size = 4,
    85                         .endianness = LITTLE_ENDIAN
    86                 }
    87         },
    88         {
    89                 .type = IO_RANGE,
    90                 .res.io_range = {
    91                         .address = 0xCFC,
    92                         .size = 4,
    93                         .endianness = LITTLE_ENDIAN
    94                 }
     79static hw_resource_t pci_conf_regs = {
     80        .type = IO_RANGE,
     81        .res.io_range = {
     82                .address = 0xCF8,
     83                .size = 8,
     84                .endianness = LITTLE_ENDIAN
    9585        }
    9686};
     
    9888static rootpc_fun_t pci_data = {
    9989        .hw_resources = {
    100                 sizeof(pci_conf_regs)/sizeof(pci_conf_regs[0]),
    101                 pci_conf_regs
     90                1,
     91                &pci_conf_regs
    10292        }
    10393};
Note: See TracChangeset for help on using the changeset viewer.