Skip to content

Commit

Permalink
staging/rtl8192e - fix typo in printk message
Browse files Browse the repository at this point in the history
In drivers/staging/rtl8192e/rtl8192e/rtl_core.c the follwing printk-message can be found:

printk(KERN_ERR "rtl8193e: Unable to allocate space "

This is quite obviously just a typo, all other similar messages use
"rtl8192e" and the string "rtl8193e" does not occur anywhere else in the
source of the driver.

Signed-off-by:	Axel Koellhofer <AxelKoellhofer@web.de>

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Axel Köllhofer authored and Greg Kroah-Hartman committed Apr 10, 2012
1 parent 4d36bf6 commit 96ddcd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/rtl8192e/rtl_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ static void rtl8192_init_priv_variable(struct net_device *dev)
priv->AcmControl = 0;
priv->pFirmware = vzalloc(sizeof(struct rt_firmware));
if (!priv->pFirmware)
printk(KERN_ERR "rtl8193e: Unable to allocate space "
printk(KERN_ERR "rtl8192e: Unable to allocate space "
"for firmware\n");

skb_queue_head_init(&priv->rx_queue);
Expand Down

0 comments on commit 96ddcd4

Please sign in to comment.