Remove device names from LPT table

This commit is contained in:
RichardG867
2021-07-08 22:55:56 -03:00
parent f88650eea5
commit c39587cfab
5 changed files with 27 additions and 30 deletions

View File

@@ -492,7 +492,7 @@ plip_close(void *priv)
const lpt_device_t lpt_plip_device = {
.name = "Parallel Line Internet Protocol (LPT)",
.name = "Parallel Line Internet Protocol",
.init = plip_lpt_init,
.close = plip_close,
.write_data = plip_write_data,
@@ -502,10 +502,9 @@ const lpt_device_t lpt_plip_device = {
.read_ctrl = NULL
};
const device_t plip_device =
{
"Parallel Line Internet Protocol",
DEVICE_LPT, 0,
plip_net_init, NULL,
NULL, { NULL }, NULL, NULL
const device_t plip_device = {
"Parallel Line Internet Protocol",
DEVICE_LPT, 0,
plip_net_init, NULL,
NULL, { NULL }, NULL, NULL
};