bcm933xx_hcs.h 356 B

123456789101112131415161718192021222324
  1. /*
  2. * Broadcom Cable Modem firmware format
  3. */
  4. #ifndef __BCM933XX_HCS_H
  5. #define __BCM933XX_HCS_H
  6. #include <linux/types.h>
  7. struct bcm_hcs {
  8. __u16 magic;
  9. __u16 control;
  10. __u16 rev_maj;
  11. __u16 rev_min;
  12. __u32 build_date;
  13. __u32 filelen;
  14. __u32 ldaddress;
  15. char filename[64];
  16. __u16 hcs;
  17. __u16 her_znaet_chto;
  18. __u32 crc;
  19. };
  20. #endif /* __BCM933XX_HCS */