Re: [patch 04/14] e1000: consolidate managability enabling/disabling

2006-12-15 Thread Jeff Garzik
Arjan van de Ven wrote: Subject: e1000: consolidate managability enabling/disabling From: Jesse Brandeburg <[EMAIL PROTECTED]> Several bugs existed in how we handle manageability issues all over the driver. This patch consolidates all the managability release and init code in two single function

Re: [patch 04/14] e1000: consolidate managability enabling/disabling

2006-12-15 Thread Jeff Garzik
Arjan van de Ven wrote: +static void +e1000_init_manageability(struct e1000_adapter *adapter) +{ + if (adapter->en_mng_pt) { + uint32_t manc2h = E1000_READ_REG(&adapter->hw, MANC2H); + uint32_t manc = E1000_READ_REG(&adapter->hw, MANC); + + /* disab

[patch 04/14] e1000: consolidate managability enabling/disabling

2006-12-15 Thread Arjan van de Ven
Subject: e1000: consolidate managability enabling/disabling From: Jesse Brandeburg <[EMAIL PROTECTED]> Several bugs existed in how we handle manageability issues all over the driver. This patch consolidates all the managability release and init code in two single functions and call them from appro