Lines Matching refs:stat8
688 u8 stat8;
690 //pci_read_config_byte(dev,E752X_HI_FERR,&stat8);
692 stat8 = info->hi_ferr;
694 if (stat8 & 0x7f) { /* Error, so process */
695 stat8 &= 0x7f;
697 if (stat8 & 0x2b)
698 hub_error(1, stat8 & 0x2b, error_found, handle_error);
700 if (stat8 & 0x54)
701 hub_error(0, stat8 & 0x54, error_found, handle_error);
703 //pci_read_config_byte(dev,E752X_HI_NERR,&stat8);
705 stat8 = info->hi_nerr;
707 if (stat8 & 0x7f) { /* Error, so process */
708 stat8 &= 0x7f;
710 if (stat8 & 0x2b)
711 hub_error(1, stat8 & 0x2b, error_found, handle_error);
713 if (stat8 & 0x54)
714 hub_error(0, stat8 & 0x54, error_found, handle_error);
773 u8 stat8;
775 stat8 = info->buf_ferr;
777 if (stat8 & 0x0f) { /* Error, so process */
778 stat8 &= 0x0f;
779 membuf_error(stat8, error_found, handle_error);
782 stat8 = info->buf_nerr;
784 if (stat8 & 0x0f) { /* Error, so process */
785 stat8 &= 0x0f;
786 membuf_error(stat8, error_found, handle_error);
1259 u8 stat8;
1274 pci_read_config_byte(pdev, E752X_DEVPRES1, &stat8);
1275 if (!force_function_unhide && !(stat8 & (1 << 5))) {
1280 stat8 |= (1 << 5);
1281 pci_write_config_byte(pdev, E752X_DEVPRES1, stat8);
1329 pci_read_config_byte(pdev, E752X_DRM, &stat8);
1330 pvt->map_type = ((stat8 & 0x0f) > ((stat8 >> 4) & 0x0f));