diff options
Diffstat (limited to 'samples/kfifo/inttype-example.c')
| -rw-r--r-- | samples/kfifo/inttype-example.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/kfifo/inttype-example.c b/samples/kfifo/inttype-example.c index 6f8e79e76c9..8dc3c2e7105 100644 --- a/samples/kfifo/inttype-example.c +++ b/samples/kfifo/inttype-example.c @@ -61,7 +61,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)); @@ -78,7 +78,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));  | 
