bcm933xx_hcs.h 419 B

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