ソースを参照

[netdrvr] tulip, de2104x: fix typo: s/__sparc_/__sparc__/

Noticed by Doug Nazar (via David Miller).

Signed-off-by: Jeff Garzik <jeff@garzik.org>
Jeff Garzik 18 年 前
コミット
8b453397da
2 ファイル変更2 行追加2 行削除
  1. 1 1
      drivers/net/tulip/de2104x.c
  2. 1 1
      drivers/net/tulip/tulip_core.c

+ 1 - 1
drivers/net/tulip/de2104x.c

@@ -63,7 +63,7 @@ MODULE_PARM_DESC (debug, "de2104x bitmapped message enable number");
 
 
 /* Set the copy breakpoint for the copy-only-tiny-buffer Rx structure. */
 /* Set the copy breakpoint for the copy-only-tiny-buffer Rx structure. */
 #if defined(__alpha__) || defined(__arm__) || defined(__hppa__) \
 #if defined(__alpha__) || defined(__arm__) || defined(__hppa__) \
-        || defined(__sparc_) || defined(__ia64__) \
+        || defined(__sparc__) || defined(__ia64__) \
         || defined(__sh__) || defined(__mips__)
         || defined(__sh__) || defined(__mips__)
 static int rx_copybreak = 1518;
 static int rx_copybreak = 1518;
 #else
 #else

+ 1 - 1
drivers/net/tulip/tulip_core.c

@@ -67,7 +67,7 @@ const char * const medianame[32] = {
 
 
 /* Set the copy breakpoint for the copy-only-tiny-buffer Rx structure. */
 /* Set the copy breakpoint for the copy-only-tiny-buffer Rx structure. */
 #if defined(__alpha__) || defined(__arm__) || defined(__hppa__) \
 #if defined(__alpha__) || defined(__arm__) || defined(__hppa__) \
-	|| defined(__sparc_) || defined(__ia64__) \
+	|| defined(__sparc__) || defined(__ia64__) \
 	|| defined(__sh__) || defined(__mips__)
 	|| defined(__sh__) || defined(__mips__)
 static int rx_copybreak = 1518;
 static int rx_copybreak = 1518;
 #else
 #else