Deleted Added
full compact
2c2
< * Copyright (c) 2010-2011 Qlogic Corporation
---
> * Copyright (c) 2011-2013 Qlogic Corporation
27c27
< * $FreeBSD: head/sys/dev/qlxgb/qla_ioctl.h 227064 2011-11-03 21:20:22Z bz $
---
> * $FreeBSD: head/sys/dev/qlxgb/qla_ioctl.h 250340 2013-05-07 22:58:42Z davidcs $
52a53,59
> struct qla_wr_flash {
> uint32_t off;
> uint32_t size;
> void *buffer;
> uint32_t pattern;
> };
> typedef struct qla_wr_flash qla_wr_flash_t;
53a61,75
> struct qla_erase_flash {
> uint32_t off;
> uint32_t size;
> };
> typedef struct qla_erase_flash qla_erase_flash_t;
>
> struct qla_rd_pci_ids {
> uint16_t ven_id;
> uint16_t dev_id;
> uint16_t subsys_ven_id;
> uint16_t subsys_dev_id;
> uint8_t rev_id;
> };
> typedef struct qla_rd_pci_ids qla_rd_pci_ids_t;
>
63a86,100
> /*
> * Write Flash
> */
> #define QLA_WR_FLASH _IOWR('q', 3, qla_wr_flash_t)
>
> /*
> * Erase Flash
> */
> #define QLA_ERASE_FLASH _IOWR('q', 5, qla_erase_flash_t)
>
> /*
> * Read PCI IDs
> */
> #define QLA_RD_PCI_IDS _IOWR('q', 6, qla_rd_pci_ids_t)
>