Skip to content

Commit

Permalink
Merge pull request sysprog21#268 from algonell/master
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
jserv authored Oct 5, 2024
2 parents 47663d6 + 98201b8 commit eb5b463
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/chardev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ static struct file_operations fops = {
/* Initialize the module - Register the character device */
static int __init chardev2_init(void)
{
/* Register the character device (atleast try) */
/* Register the character device (at least try) */
int ret_val = register_chrdev(MAJOR_NUM, DEVICE_NAME, &fops);

/* Negative values signify an error */
Expand Down
2 changes: 1 addition & 1 deletion lkmpg.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1905,7 +1905,7 @@ \subsection{Interrupt Handlers}

The flags can be used for specify behaviors of the IRQ.
For example, use \cpp|IRQF_SHARED| to indicate you are willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ); use the \cpp|IRQF_ONESHOT| to indicate that the IRQ is not reenabled after the handler finished.
It should be noted that in some materials, you may encouter another set of IRQ flags named with the \cpp|SA| prefix.
It should be noted that in some materials, you may encounter another set of IRQ flags named with the \cpp|SA| prefix.
For example, the \cpp|SA_SHIRQ| and the \cpp|SA_INTERRUPT|.
Those are the the IRQ flags in the older kernels.
They have been removed completely.
Expand Down

0 comments on commit eb5b463

Please sign in to comment.