1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Correct typo. Return ENXIO instead of EIO.

This commit is contained in:
Maksim Yevmenkin 2004-11-19 18:54:54 +00:00
parent 6bdbe99c0d
commit bb50f99e30
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137896

View File

@ -597,7 +597,7 @@ bt3c_pccard_match(device_t dev)
pp = pccard_product_lookup(dev, bt3c_pccard_products,
sizeof(bt3c_pccard_products[0]), NULL);
if (pp == NULL)
return (EIO);
return (ENXIO);
device_set_desc(dev, pp->pp_name);