From: Tony Lindgren Date: Mon, 13 Aug 2007 11:08:53 +0000 (-0700) Subject: musb_hdrc: Search and replace _pthis with _musb X-Git-Tag: v2.6.23-omap1~228^2~32 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=b60b2ea5027d495be71190764d75ab4d8c888a54;p=linux-2.6-omap-h63xx.git musb_hdrc: Search and replace _pthis with _musb Search and replace _pthis with musb Signed-off-by: Tony Lindgren --- diff --git a/drivers/usb/musb/musbdefs.h b/drivers/usb/musb/musbdefs.h index 58c5d5d6f3b..70a081de10f 100644 --- a/drivers/usb/musb/musbdefs.h +++ b/drivers/usb/musb/musbdefs.h @@ -236,10 +236,10 @@ enum musb_g_ep0_state { /****************************** FUNCTIONS ********************************/ -#define MUSB_HST_MODE(_pthis)\ - { (_pthis)->bIsHost=TRUE; } -#define MUSB_DEV_MODE(_pthis) \ - { (_pthis)->bIsHost=FALSE; } +#define MUSB_HST_MODE(_musb)\ + { (_musb)->bIsHost=TRUE; } +#define MUSB_DEV_MODE(_musb) \ + { (_musb)->bIsHost=FALSE; } #define test_devctl_hst_mode(_x) \ (musb_readb((_x)->mregs, MGC_O_HDRC_DEVCTL)&MGC_M_DEVCTL_HM)