2010/1/2 Shawn <cit...@gmail.com>:
> hello guys,
>  I got a newbie confused when I was looking into the source code of
> s3c2440's RTC driver.I dont know what is __v excatly means.anyone can
> tell?thanks anyway!
>
> #define readb(c) ({ __u8  __v = __raw_readb(__mem_pci(c)); __v; })
>
> --
> GNU powered it...
> GPL protect it...
> God blessing it...
>
> regards
> HFG--Shawn the R0ck
>

notice "{ ... }"
It's code block, and __v is its last value
when you use readb link
        somevar = readb(someport)
then __v is return to set somevar

--
To unsubscribe from this list: send an email with
"unsubscribe kernelnewbies" to ecar...@nl.linux.org
Please read the FAQ at http://kernelnewbies.org/FAQ

Reply via email to