These pointers can't be NULL so I have removed the checks.
The checking was sort of problematic as well because it didn't make
sense.  In _nbu2ss_read_request_data() the && should have been ||.  In
nbu2ss_gad_get_frame() we know that "pgadget" is non-NULL and "udc" is
an offset from "pgadget" so it can't be NULL.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 /*-------------------------------------------------------------------------*/
 static inline void _nbu2ss_read_request_data(struct nbu2ss_udc *udc, u32 *pdata)
 {
-       if ((!udc) && (!pdata))
-               return;
-
        *pdata = _nbu2ss_readl(&udc->p_regs->SETUP_DATA0);
        pdata++;
        *pdata = _nbu2ss_readl(&udc->p_regs->SETUP_DATA1);
        }
 
        udc = container_of(pgadget, struct nbu2ss_udc, gadget);
-       if (!udc) {
-               dev_err(&pgadget->dev, "%s, udc == NULL\n", __func__);
-               return -EINVAL;
-       }
-
        data = gpio_get_value(VBUS_VALUE);
        if (data == 0)
                return -EINVAL;