dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] remove an unused function from the header

Removes an unused function from the via-velocity-driver.
It doesn't make the binary smaller, but the source cleaner.

Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Henrik Kretzschmar 2006-08-15 11:41:11 +02:00 committed by Jeff Garzik
parent a513c315f9
commit 5243a37b79
1 changed files with 0 additions and 19 deletions

View File

@ -262,25 +262,6 @@ struct velocity_rd_info {
dma_addr_t skb_dma;
};
/**
* alloc_rd_info - allocate an rd info block
*
* Alocate and initialize a receive info structure used for keeping
* track of kernel side information related to each receive
* descriptor we are using
*/
static inline struct velocity_rd_info *alloc_rd_info(void)
{
struct velocity_rd_info *ptr;
if ((ptr = kmalloc(sizeof(struct velocity_rd_info), GFP_ATOMIC)) == NULL)
return NULL;
else {
memset(ptr, 0, sizeof(struct velocity_rd_info));
return ptr;
}
}
/*
* Used to track transmit side buffers.
*/