Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Modify the code below to do the following: 1. Print out the value of GOLDEN_RATIO_PRIME in the simple_init() function. 2. Print out the greatest common

Modify the code below to do the following:

1. Print out the value of GOLDEN_RATIO_PRIME in the simple_init() function.  

2. Print out the greatest common divisor of 3,300 and 24 in the simple_exit() function.

simple.c

#include

#include

#include

 

/* This function is called when the module is loaded. */

int simple_init(void)

{

       printk(KERN_INFO "Loading Module");

 

       return 0;

}

 

/* This function is called when the module is removed. */

void simple_exit(void) {

     printk(KERN_INFO "Removing Module");

}

 

/* Macros for registering module entry and exit points. */

module_init( simple_init );

module_exit( simple_exit );

MODULE_LICENSE("GPL");

MODULE_DESCRIPTION("Simple Module");

MODULE_AUTHOR("SGG");

Step by Step Solution

3.31 Rating (163 Votes )

There are 3 Steps involved in it

Step: 1

include include include include include include include This function is ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Matlab An Introduction with Applications

Authors: Amos Gilat

5th edition

1118629868, 978-1118801802, 1118801806, 978-1118629864

More Books

Students also viewed these Finance questions

Question

What is a reporting entity?

Answered: 1 week ago