Set the bus description for EISA, like it is for ISA.

This commit is contained in:
Peter Wemm 1999-04-19 06:57:33 +00:00
parent da2d2676bb
commit bed56f7f4d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45804
2 changed files with 6 additions and 4 deletions

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: eisaconf.c,v 1.37 1999/01/14 06:22:03 jdp Exp $
* $Id: eisaconf.c,v 1.38 1999/04/18 15:50:33 peter Exp $
*/
#include "opt_eisa.h"
@ -180,6 +180,8 @@ eisa_probe(device_t dev)
int eisaBase = 0xc80;
eisa_id_t eisa_id;
device_set_desc(dev, "EISA bus");
for (slot = 0; slot < num_eisa_slots; eisaBase+=0x1000, slot++) {
int id_size = sizeof(eisa_id);
eisa_id = 0;
@ -816,4 +818,3 @@ static driver_t eisa_driver = {
};
DRIVER_MODULE(eisa, isab, eisa_driver, eisa_devclass, 0, 0);

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: eisaconf.c,v 1.37 1999/01/14 06:22:03 jdp Exp $
* $Id: eisaconf.c,v 1.38 1999/04/18 15:50:33 peter Exp $
*/
#include "opt_eisa.h"
@ -180,6 +180,8 @@ eisa_probe(device_t dev)
int eisaBase = 0xc80;
eisa_id_t eisa_id;
device_set_desc(dev, "EISA bus");
for (slot = 0; slot < num_eisa_slots; eisaBase+=0x1000, slot++) {
int id_size = sizeof(eisa_id);
eisa_id = 0;
@ -816,4 +818,3 @@ static driver_t eisa_driver = {
};
DRIVER_MODULE(eisa, isab, eisa_driver, eisa_devclass, 0, 0);