Changeset 1433ecda in mainline for uspace/drv/intctl/apic/apic.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/intctl/apic/apic.c

    r47b2d7e3 r1433ecda  
    6666                uint8_t reg_addr;       /**< APIC Register Address. */
    6767                unsigned int : 24;      /**< Reserved. */
    68         } __attribute__ ((packed));
     68        } __attribute__((packed));
    6969} io_regsel_t;
    7070
     
    8383                        unsigned int masked : 1;        /**< Interrupt Mask. */
    8484                        unsigned int : 15;              /**< Reserved. */
    85                 } __attribute__ ((packed));
     85                } __attribute__((packed));
    8686        };
    8787        union {
     
    9090                        unsigned int : 24;      /**< Reserved. */
    9191                        uint8_t dest : 8;       /**< Destination Field. */
    92                 } __attribute__ ((packed));
     92                } __attribute__((packed));
    9393        };
    94 } __attribute__ ((packed)) io_redirection_reg_t;
     94} __attribute__((packed)) io_redirection_reg_t;
    9595
    9696#define IO_APIC_SIZE    20
     
    148148
    149149        int pin = irq_to_pin(irq);
    150         if (pin == -1)
     150        if (pin == -1)
    151151                return ENOENT;
    152152
Note: See TracChangeset for help on using the changeset viewer.