diff options
Diffstat (limited to 'samples/kfifo/bytestream-example.c')
| -rw-r--r-- | samples/kfifo/bytestream-example.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/kfifo/bytestream-example.c b/samples/kfifo/bytestream-example.c index cfe40addda7..2fca916d9ed 100644 --- a/samples/kfifo/bytestream-example.c +++ b/samples/kfifo/bytestream-example.c @@ -64,7 +64,7 @@ static int __init testfunc(void)  	/* put values into the fifo */  	for (i = 0; i != 10; i++) -		kfifo_put(&test, &i); +		kfifo_put(&test, i);  	/* show the number of used elements */  	printk(KERN_INFO "fifo len: %u\n", kfifo_len(&test)); @@ -85,7 +85,7 @@ static int __init testfunc(void)  	kfifo_skip(&test);  	/* put values into the fifo until is full */ -	for (i = 20; kfifo_put(&test, &i); i++) +	for (i = 20; kfifo_put(&test, i); i++)  		;  	printk(KERN_INFO "queue len: %u\n", kfifo_len(&test));  | 
