mirror of
https://github.com/ipxe/ipxe
synced 2025-12-28 10:32:52 +03:00
We need the ISA product ID mask available separately for 3c509.c.
This commit is contained in:
@@ -35,8 +35,9 @@
|
|||||||
* Extract product ID and revision from combined product field
|
* Extract product ID and revision from combined product field
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#define ISA_PROD_ID(product) ( (product) & 0xf0ff )
|
#define ISA_PROD_ID_MASK ( 0xf0ff )
|
||||||
#define ISA_PROD_REV(product) ( ( (product) & 0x0f00 ) >> 8 )
|
#define ISA_PROD_ID(product) ( (product) & ISA_PROD_ID_MASK )
|
||||||
|
#define ISA_PROD_REV(product) ( ( (product) & ~ISA_PROD_ID_MASK ) >> 8 )
|
||||||
|
|
||||||
/* Functions in isa_ids.c */
|
/* Functions in isa_ids.c */
|
||||||
extern char * isa_id_string ( uint16_t vendor, uint16_t product );
|
extern char * isa_id_string ( uint16_t vendor, uint16_t product );
|
||||||
|
|||||||
Reference in New Issue
Block a user