diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2003-12-26 03:06:11 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2003-12-26 03:06:11 +0000 |
| commit | ac0e70c401996e49306f19a4b13adf38cbf99296 (patch) | |
| tree | c73a24a4056db1b704de4968b247fb74b9486880 /sys | |
| parent | 38f5ddc9095791f84b02cc83a160d7e2c195d205 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/pc98/cbus/sio.c | 4 | ||||
| -rw-r--r-- | sys/pc98/pc98/sio.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c index b2f361988a696..a9d1879530901 100644 --- a/sys/pc98/cbus/sio.c +++ b/sys/pc98/cbus/sio.c @@ -1691,7 +1691,7 @@ sioattach(dev, xrid, rclk) com->tx_fifo_size = 1024; break; } - if (com->esp != NULL) + if (com->esp) break; #endif #ifdef PC98 @@ -1719,7 +1719,7 @@ sioattach(dev, xrid, rclk) #endif #ifdef COM_ESP - if (com->esp != NULL) { + if (com->esp) { /* * Set 16550 compatibility mode. * We don't use the ESP_MODE_SCALE bit to increase the diff --git a/sys/pc98/pc98/sio.c b/sys/pc98/pc98/sio.c index b2f361988a696..a9d1879530901 100644 --- a/sys/pc98/pc98/sio.c +++ b/sys/pc98/pc98/sio.c @@ -1691,7 +1691,7 @@ sioattach(dev, xrid, rclk) com->tx_fifo_size = 1024; break; } - if (com->esp != NULL) + if (com->esp) break; #endif #ifdef PC98 @@ -1719,7 +1719,7 @@ sioattach(dev, xrid, rclk) #endif #ifdef COM_ESP - if (com->esp != NULL) { + if (com->esp) { /* * Set 16550 compatibility mode. * We don't use the ESP_MODE_SCALE bit to increase the |
