Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 /*
0003  * Broadcom Cable Modem firmware format
0004  */
0005 
0006 #ifndef __BCM933XX_HCS_H
0007 #define __BCM933XX_HCS_H
0008 
0009 #include <linux/types.h>
0010 
0011 struct bcm_hcs {
0012     __u16 magic;
0013     __u16 control;
0014     __u16 rev_maj;
0015     __u16 rev_min;
0016     __u32 build_date;
0017     __u32 filelen;
0018     __u32 ldaddress;
0019     char filename[64];
0020     __u16 hcs;
0021     __u16 her_znaet_chto;
0022     __u32 crc;
0023 };
0024 
0025 #endif /* __BCM933XX_HCS */