Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d79459da
Commit
d79459da
authored
Apr 17, 2004
by
Geert Uytterhoeven
Committed by
Linus Torvalds
Apr 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Amiga Ariadne Ethernet KERN_*
Amiga Ariadne Ethernet: Add KERN_* prefixes to printk() messages
parent
c934f504
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
32 deletions
+34
-32
drivers/net/ariadne.c
drivers/net/ariadne.c
+34
-32
No files found.
drivers/net/ariadne.c
View file @
d79459da
...
...
@@ -216,7 +216,7 @@ static int __devinit ariadne_init_one(struct zorro_dev *z,
}
zorro_set_drvdata
(
z
,
dev
);
printk
(
"%s: Ariadne at 0x%08lx, Ethernet Address "
printk
(
KERN_INFO
"%s: Ariadne at 0x%08lx, Ethernet Address "
"%02x:%02x:%02x:%02x:%02x:%02x
\n
"
,
dev
->
name
,
board
,
dev
->
dev_addr
[
0
],
dev
->
dev_addr
[
1
],
dev
->
dev_addr
[
2
],
dev
->
dev_addr
[
3
],
dev
->
dev_addr
[
4
],
dev
->
dev_addr
[
5
]);
...
...
@@ -245,16 +245,16 @@ static int ariadne_open(struct net_device *dev)
lance
->
RAP
=
CSR89
;
/* Chip ID */
version
|=
swapw
(
lance
->
RDP
)
<<
16
;
if
((
version
&
0x00000fff
)
!=
0x00000003
)
{
printk
(
"ariadne_open: Couldn't find AMD Ethernet Chip
\n
"
);
printk
(
KERN_WARNING
"ariadne_open: Couldn't find AMD Ethernet Chip
\n
"
);
return
-
EAGAIN
;
}
if
((
version
&
0x0ffff000
)
!=
0x00003000
)
{
printk
(
"ariadne_open: Couldn't find Am79C960 (Wrong part number = %ld)
\n
"
,
(
version
&
0x0ffff000
)
>>
12
);
printk
(
KERN_WARNING
"ariadne_open: Couldn't find Am79C960 (Wrong part "
"number = %ld)
\n
"
,
(
version
&
0x0ffff000
)
>>
12
);
return
-
EAGAIN
;
}
#if 0
printk("ariadne_open: Am79C960 (PCnet-ISA) Revision %ld\n",
printk(
KERN_DEBUG
"ariadne_open: Am79C960 (PCnet-ISA) Revision %ld\n",
(version & 0xf0000000)>>28);
#endif
...
...
@@ -354,8 +354,8 @@ static void ariadne_init_ring(struct net_device *dev)
priv
->
tx_ring
[
i
]
=
&
lancedata
->
tx_ring
[
i
];
priv
->
tx_buff
[
i
]
=
lancedata
->
tx_buff
[
i
];
#if 0
printk(
"TX Entry %2d at %p, Buf at %p\n", i, &lancedata->tx_ring[i]
,
lancedata->tx_buff[i]);
printk(
KERN_DEBUG "TX Entry %2d at %p, Buf at %p\n", i
,
&lancedata->tx_ring[i],
lancedata->tx_buff[i]);
#endif
}
...
...
@@ -370,8 +370,8 @@ static void ariadne_init_ring(struct net_device *dev)
priv
->
rx_ring
[
i
]
=
&
lancedata
->
rx_ring
[
i
];
priv
->
rx_buff
[
i
]
=
lancedata
->
rx_buff
[
i
];
#if 0
printk(
"RX Entry %2d at %p, Buf at %p\n", i, &lancedata->rx_ring[i]
,
lancedata->rx_buff[i]);
printk(
KERN_DEBUG "RX Entry %2d at %p, Buf at %p\n", i
,
&lancedata->rx_ring[i],
lancedata->rx_buff[i]);
#endif
}
}
...
...
@@ -389,9 +389,9 @@ static int ariadne_close(struct net_device *dev)
lance
->
RAP
=
CSR0
;
/* PCnet-ISA Controller Status */
if
(
ariadne_debug
>
1
)
{
printk
(
"%s: Shutting down ethercard, status was %2.2x.
\n
"
,
dev
->
name
,
lance
->
RDP
);
printk
(
"%s: %lu packets missed
\n
"
,
dev
->
name
,
printk
(
KERN_DEBUG
"%s: Shutting down ethercard, status was %2.2x.
\n
"
,
dev
->
name
,
lance
->
RDP
);
printk
(
KERN_DEBUG
"%s: %lu packets missed
\n
"
,
dev
->
name
,
priv
->
stats
.
rx_missed_errors
);
}
...
...
@@ -425,7 +425,7 @@ static irqreturn_t ariadne_interrupt(int irq, void *data, struct pt_regs *fp)
int
handled
=
0
;
if
(
dev
==
NULL
)
{
printk
(
"ariadne_interrupt(): irq for unknown device.
\n
"
);
printk
(
KERN_WARNING
"ariadne_interrupt(): irq for unknown device.
\n
"
);
return
IRQ_NONE
;
}
...
...
@@ -443,8 +443,8 @@ static irqreturn_t ariadne_interrupt(int irq, void *data, struct pt_regs *fp)
#if 0
if (ariadne_debug > 5) {
printk(
"%s: interrupt csr0=%#2.2x new csr=%#2.2x.", dev->name
,
csr0, lance->RDP);
printk(
KERN_DEBUG "%s: interrupt csr0=%#2.2x new csr=%#2.2x."
,
dev->name,
csr0, lance->RDP);
printk("[");
if (csr0 & INTR)
printk(" INTR");
...
...
@@ -514,8 +514,8 @@ static irqreturn_t ariadne_interrupt(int irq, void *data, struct pt_regs *fp)
/* Ackk! On FIFO errors the Tx unit is turned off! */
priv
->
stats
.
tx_fifo_errors
++
;
/* Remove this verbosity later! */
printk
(
"%s: Tx FIFO error! Status %4.4x.
\n
"
,
dev
->
name
,
csr0
);
printk
(
KERN_ERR
"%s: Tx FIFO error! Status %4.4x.
\n
"
,
dev
->
name
,
csr0
);
/* Restart the chip. */
lance
->
RDP
=
STRT
;
}
...
...
@@ -529,8 +529,8 @@ static irqreturn_t ariadne_interrupt(int irq, void *data, struct pt_regs *fp)
#ifndef final_version
if
(
priv
->
cur_tx
-
dirty_tx
>=
TX_RING_SIZE
)
{
printk
(
"out-of-sync dirty pointer, %d vs. %d, full=%d.
\n
"
,
dirty_tx
,
priv
->
cur_tx
,
priv
->
tx_full
);
printk
(
KERN_ERR
"out-of-sync dirty pointer, %d vs. %d, "
"full=%d.
\n
"
,
dirty_tx
,
priv
->
cur_tx
,
priv
->
tx_full
);
dirty_tx
+=
TX_RING_SIZE
;
}
#endif
...
...
@@ -556,8 +556,8 @@ static irqreturn_t ariadne_interrupt(int irq, void *data, struct pt_regs *fp)
}
if
(
csr0
&
MERR
)
{
handled
=
1
;
printk
(
"%s: Bus master arbitration failure, status %4.4x.
\n
"
,
dev
->
name
,
csr0
);
printk
(
KERN_ERR
"%s: Bus master arbitration failure, status "
"%4.4x.
\n
"
,
dev
->
name
,
csr0
);
/* Restart the chip. */
lance
->
RDP
=
STRT
;
}
...
...
@@ -569,8 +569,8 @@ static irqreturn_t ariadne_interrupt(int irq, void *data, struct pt_regs *fp)
#if 0
if (ariadne_debug > 4)
printk(
"%s: exiting interrupt, csr%d=%#4.4x.\n", dev->name, lance->RAP
,
lance->RDP);
printk(
KERN_DEBUG "%s: exiting interrupt, csr%d=%#4.4x.\n", dev->name
,
lance->R
AP, lance->R
DP);
#endif
return
IRQ_RETVAL
(
handled
);
}
...
...
@@ -598,8 +598,8 @@ static int ariadne_start_xmit(struct sk_buff *skb, struct net_device *dev)
#if 0
if (ariadne_debug > 3) {
lance->RAP = CSR0; /* PCnet-ISA Controller Status */
printk(
"%s: ariadne_start_xmit() called, csr0 %4.4x.\n", dev->name
,
lance->RDP);
printk(
KERN_DEBUG "%s: ariadne_start_xmit() called, csr0 %4.4x.\n"
,
dev->name,
lance->RDP);
lance->RDP = 0x0000;
}
#endif
...
...
@@ -616,7 +616,7 @@ static int ariadne_start_xmit(struct sk_buff *skb, struct net_device *dev)
/* Fill in a Tx ring entry */
#if 0
printk("TX pkt type 0x%04x from ", ((u_short *)skb->data)[6]);
printk(
KERN_DEBUG
"TX pkt type 0x%04x from ", ((u_short *)skb->data)[6]);
{
int i;
u_char *ptr = &((u_char *)skb->data)[6];
...
...
@@ -652,7 +652,7 @@ static int ariadne_start_xmit(struct sk_buff *skb, struct net_device *dev)
len >>= 1;
for (i = 0; i < len; i += 8) {
int j;
printk("%04x:", i);
printk(
KERN_DEBUG
"%04x:", i);
for (j = 0; (j < 8) && ((i+j) < len); j++) {
if (!(j & 1))
printk(" ");
...
...
@@ -671,8 +671,8 @@ static int ariadne_start_xmit(struct sk_buff *skb, struct net_device *dev)
if
((
priv
->
cur_tx
>=
TX_RING_SIZE
)
&&
(
priv
->
dirty_tx
>=
TX_RING_SIZE
))
{
#if 0
printk(
"*** Subtracting TX_RING_SIZE from cur_tx (%d) and dirty_tx (%d)\n",
priv->cur_tx, priv->dirty_tx);
printk(
KERN_DEBUG "*** Subtracting TX_RING_SIZE from cur_tx (%d) and "
"dirty_tx (%d)\n",
priv->cur_tx, priv->dirty_tx);
#endif
priv
->
cur_tx
-=
TX_RING_SIZE
;
...
...
@@ -729,7 +729,8 @@ static int ariadne_rx(struct net_device *dev)
skb
=
dev_alloc_skb
(
pkt_len
+
2
);
if
(
skb
==
NULL
)
{
printk
(
"%s: Memory squeeze, deferring packet.
\n
"
,
dev
->
name
);
printk
(
KERN_WARNING
"%s: Memory squeeze, deferring packet.
\n
"
,
dev
->
name
);
for
(
i
=
0
;
i
<
RX_RING_SIZE
;
i
++
)
if
(
lowb
(
priv
->
rx_ring
[(
entry
+
i
)
%
RX_RING_SIZE
]
->
RMD1
)
&
RF_OWN
)
break
;
...
...
@@ -749,7 +750,8 @@ static int ariadne_rx(struct net_device *dev)
eth_copy_and_sum
(
skb
,
(
char
*
)
priv
->
rx_buff
[
entry
],
pkt_len
,
0
);
skb
->
protocol
=
eth_type_trans
(
skb
,
dev
);
#if 0
printk("RX pkt type 0x%04x from ", ((u_short *)skb->data)[6]);
printk(KERN_DEBUG "RX pkt type 0x%04x from ",
((u_short *)skb->data)[6]);
{
int i;
u_char *ptr = &((u_char *)skb->data)[6];
...
...
@@ -825,7 +827,7 @@ static void set_multicast_list(struct net_device *dev)
if
(
dev
->
flags
&
IFF_PROMISC
)
{
/* Log any net taps. */
printk
(
"%s: Promiscuous mode enabled.
\n
"
,
dev
->
name
);
printk
(
KERN_INFO
"%s: Promiscuous mode enabled.
\n
"
,
dev
->
name
);
lance
->
RAP
=
CSR15
;
/* Mode Register */
lance
->
RDP
=
PROM
;
/* Set promiscuous mode */
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment