
27 Jan
2012
27 Jan
'12
10:56 p.m.
On 1/26/2012 7:54 PM, Mike Frysinger wrote:
On Thursday 26 January 2012 17:21:44 Troy Kisky wrote:
+/* This is used to set board specific things like clock skew */ +unsigned short ksz9021_por_cmds[] = {
static const
Thanks
+int ksz9021_send_phy_cmds(struct phy_device *phydev, unsigned short* p)
static
Thanks
- for (;;) {
personally, i'd prefer: while (1) { -mike
I used to prefer while (1), but then Microsoft started warning about it. I doubt GCC ever makes the same decision, but it is easier to use the same style. And I can't see a downside.
see http://msdn.microsoft.com/en-us/library/6t66728h%28VS.80%29.aspx