Add missing return that broke 8-bit CF support in refactoring in r222671.

Tested on a Cavium CN5860-EVB-NIC4.  This was broken for over a year.
This commit is contained in:
Juli Mallett 2012-10-27 23:36:41 +00:00
parent 111d36dc7b
commit 5eceedc5a0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242201

View File

@ -280,6 +280,7 @@ static void cf_outb_8(int port, uint8_t val)
if (bus_type == CF_8) {
volatile uint8_t *task_file = (volatile uint8_t *)base_addr;
task_file[port] = val;
return;
}
/*