On Thursday 26 July 2012, Vinayak Holikatti wrote:

> -static void ufshcd_remove(struct pci_dev *pdev)
> +void ufshcd_remove(struct ufs_hba *hba)
>  {
> -     struct ufs_hba *hba = pci_get_drvdata(pdev);
> -
>       /* disable interrupts */
>       ufshcd_int_config(hba, UFSHCD_INT_DISABLE);
> -     free_irq(pdev->irq, hba);
>  
>       ufshcd_hba_stop(hba);
>       ufshcd_hba_free(hba);
>  
>       scsi_remove_host(hba->host);
>       scsi_host_put(hba->host);
> +}
> +EXPORT_SYMBOL(ufshcd_remove);

For driver internal symbols, you should always use "EXPORT_SYMBOL_GPL"
here.

        Arnd

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to